2017-04-03 16:00:51 -04:00
|
|
|
class Projects::ProtectedRefsController < Projects::ApplicationController
|
|
|
|
include RepositorySettingsRedirect
|
2017-04-05 13:59:46 -04:00
|
|
|
|
2017-04-03 16:00:51 -04:00
|
|
|
# Authorize
|
|
|
|
before_action :require_non_empty_project
|
|
|
|
before_action :authorize_admin_project!
|
|
|
|
before_action :load_protected_ref, only: [:show, :update, :destroy]
|
|
|
|
|
|
|
|
layout "project_settings"
|
|
|
|
|
|
|
|
def index
|
|
|
|
redirect_to_repository_settings(@project)
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2017-04-05 13:59:46 -04:00
|
|
|
protected_ref = create_service_class.new(@project, current_user, protected_ref_params).execute
|
|
|
|
|
2017-04-03 16:00:51 -04:00
|
|
|
unless protected_ref.persisted?
|
|
|
|
flash[:alert] = protected_ref.errors.full_messages.join(', ').html_safe
|
|
|
|
end
|
2017-04-05 13:59:46 -04:00
|
|
|
|
2017-04-03 16:00:51 -04:00
|
|
|
redirect_to_repository_settings(@project)
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2017-04-05 13:59:46 -04:00
|
|
|
@matching_refs = @protected_ref.matching(project_refs)
|
2017-04-03 16:00:51 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2017-04-05 13:59:46 -04:00
|
|
|
@protected_ref = update_service_class.new(@project, current_user, protected_ref_params).execute(@protected_ref)
|
2017-04-03 16:00:51 -04:00
|
|
|
|
2017-04-05 13:59:46 -04:00
|
|
|
if @protected_ref.valid?
|
|
|
|
render json: @protected_ref, status: :ok
|
2017-04-03 16:00:51 -04:00
|
|
|
else
|
2017-04-05 13:59:46 -04:00
|
|
|
render json: @protected_ref.errors, status: :unprocessable_entity
|
2017-04-03 16:00:51 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2017-04-05 13:59:46 -04:00
|
|
|
@protected_ref.destroy
|
2017-04-03 16:00:51 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to_repository_settings(@project) }
|
|
|
|
format.js { head :ok }
|
|
|
|
end
|
|
|
|
end
|
2017-05-05 11:59:31 -04:00
|
|
|
|
|
|
|
protected
|
|
|
|
|
|
|
|
def access_level_attributes
|
|
|
|
%i(access_level id)
|
|
|
|
end
|
2017-04-03 16:00:51 -04:00
|
|
|
end
|