ee0e3ffc05
Implement ability to update deploy keys Closes #3191 See merge request !10383
60 lines
1.2 KiB
Ruby
60 lines
1.2 KiB
Ruby
class Admin::DeployKeysController < Admin::ApplicationController
|
|
before_action :deploy_keys, only: [:index]
|
|
before_action :deploy_key, only: [:destroy, :edit, :update]
|
|
|
|
def index
|
|
end
|
|
|
|
def new
|
|
@deploy_key = deploy_keys.new
|
|
end
|
|
|
|
def create
|
|
@deploy_key = deploy_keys.new(create_params.merge(user: current_user))
|
|
|
|
if @deploy_key.save
|
|
redirect_to admin_deploy_keys_path
|
|
else
|
|
render 'new'
|
|
end
|
|
end
|
|
|
|
def edit
|
|
end
|
|
|
|
def update
|
|
if deploy_key.update_attributes(update_params)
|
|
flash[:notice] = 'Deploy key was successfully updated.'
|
|
redirect_to admin_deploy_keys_path
|
|
else
|
|
render 'edit'
|
|
end
|
|
end
|
|
|
|
def destroy
|
|
deploy_key.destroy
|
|
|
|
respond_to do |format|
|
|
format.html { redirect_to admin_deploy_keys_path, status: 302 }
|
|
format.json { head :ok }
|
|
end
|
|
end
|
|
|
|
protected
|
|
|
|
def deploy_key
|
|
@deploy_key ||= deploy_keys.find(params[:id])
|
|
end
|
|
|
|
def deploy_keys
|
|
@deploy_keys ||= DeployKey.are_public
|
|
end
|
|
|
|
def create_params
|
|
params.require(:deploy_key).permit(:key, :title, :can_push)
|
|
end
|
|
|
|
def update_params
|
|
params.require(:deploy_key).permit(:title, :can_push)
|
|
end
|
|
end
|