debian-mirror-gitlab/app/controllers/projects/protected_refs_controller.rb

68 lines
1.6 KiB
Ruby
Raw Normal View History

2018-12-05 23:21:45 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
class Projects::ProtectedRefsController < Projects::ApplicationController
include RepositorySettingsRedirect
# 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
protected_ref = create_service_class.new(@project, current_user, protected_ref_params).execute
unless protected_ref.persisted?
flash[:alert] = protected_ref.errors.full_messages.join(', ').html_safe
end
2018-11-20 20:47:30 +05:30
redirect_to_repository_settings(@project, anchor: params[:update_section])
2017-08-17 22:00:37 +05:30
end
def show
@matching_refs = @protected_ref.matching(project_refs)
end
def update
@protected_ref = update_service_class.new(@project, current_user, protected_ref_params).execute(@protected_ref)
if @protected_ref.valid?
render json: @protected_ref, status: :ok
else
render json: @protected_ref.errors, status: :unprocessable_entity
end
end
def destroy
2018-05-09 12:01:36 +05:30
destroy_service_class.new(@project, current_user).execute(@protected_ref)
2017-08-17 22:00:37 +05:30
respond_to do |format|
2018-11-20 20:47:30 +05:30
format.html { redirect_to_repository_settings(@project, anchor: params[:update_section]) }
2017-08-17 22:00:37 +05:30
format.js { head :ok }
end
end
2017-09-10 17:25:29 +05:30
protected
2018-05-09 12:01:36 +05:30
def create_service_class
service_namespace::CreateService
end
def update_service_class
service_namespace::UpdateService
end
def destroy_service_class
service_namespace::DestroyService
end
2017-09-10 17:25:29 +05:30
def access_level_attributes
%i(access_level id)
end
2017-08-17 22:00:37 +05:30
end