2013-03-01 11:33:02 +00:00
|
|
|
class Users::SshKeysController < Users::BaseController
|
2014-11-13 00:23:01 +00:00
|
|
|
before_filter :set_current_user
|
2013-03-01 11:33:02 +00:00
|
|
|
|
|
|
|
def index
|
2014-11-06 22:00:23 +00:00
|
|
|
@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'
|
2014-11-06 22:00:23 +00:00
|
|
|
redirect_to ssh_keys_path
|
2013-03-01 11:33:02 +00:00
|
|
|
else
|
|
|
|
flash[:error] = t 'flash.ssh_keys.save_error'
|
2014-11-06 22:00:23 +00:00
|
|
|
# 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
|
|
|
|
2013-03-01 11:33:02 +00:00
|
|
|
end
|