rosa-build/app/controllers/users/ssh_keys_controller.rb

33 lines
815 B
Ruby
Raw Normal View History

2013-03-01 11:33:02 +00:00
class Users::SshKeysController < Users::BaseController
2015-03-04 23:19:19 +00:00
before_action :set_current_user
before_action -> { authorize current_user, :update? }
2013-03-01 11:33:02 +00:00
def index
@ssh_key = SshKey.new
2013-03-01 11:33:02 +00:00
end
def create
@ssh_key = current_user.ssh_keys.new params[:ssh_key]
if @ssh_key.save
flash[:notice] = t 'flash.ssh_keys.saved'
redirect_to ssh_keys_path
2013-03-01 11:33:02 +00:00
else
flash[:error] = t 'flash.ssh_keys.save_error'
# flash[:warning] = @ssh_key.errors.full_messages.join('. ') unless @ssh_key.errors.blank?
render :index
2013-03-01 11:33:02 +00:00
end
end
def destroy
@ssh_key = current_user.ssh_keys.find params[:id]
if @ssh_key.destroy
flash[:notice] = t 'flash.ssh_keys.destroyed'
else
flash[:error] = t 'flash.ssh_keys.destroy_error'
end
redirect_to ssh_keys_path
end
2014-11-13 00:23:01 +00:00
end