debian-mirror-gitlab/app/services/protected_branches/update_service.rb
2017-08-17 22:00:37 +05:30

10 lines
272 B
Ruby

module ProtectedBranches
class UpdateService < BaseService
def execute(protected_branch)
raise Gitlab::Access::AccessDeniedError unless can?(current_user, :admin_project, project)
protected_branch.update(params)
protected_branch
end
end
end