41 lines
905 B
Ruby
41 lines
905 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Profiles::KeysController < Profiles::ApplicationController
|
|
feature_category :users
|
|
|
|
def index
|
|
@keys = current_user.keys.order_id_desc
|
|
@key = Key.new
|
|
end
|
|
|
|
def show
|
|
@key = current_user.keys.find(params[:id])
|
|
end
|
|
|
|
def create
|
|
@key = Keys::CreateService.new(current_user, key_params.merge(ip_address: request.remote_ip)).execute
|
|
|
|
if @key.persisted?
|
|
redirect_to profile_key_path(@key)
|
|
else
|
|
@keys = current_user.keys.select(&:persisted?)
|
|
render :index
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
@key = current_user.keys.find(params[:id])
|
|
Keys::DestroyService.new(current_user).execute(@key)
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to profile_keys_url, status: :found }
|
|
format.js { head :ok }
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def key_params
|
|
params.require(:key).permit(:title, :key, :expires_at)
|
|
end
|
|
end
|