debian-mirror-gitlab/app/services/protected_branches/create_service.rb
2018-11-18 11:00:15 +05:30

23 lines
504 B
Ruby

# frozen_string_literal: true
module ProtectedBranches
class CreateService < BaseService
def execute(skip_authorization: false)
raise Gitlab::Access::AccessDeniedError unless skip_authorization || authorized?
protected_branch.save
protected_branch
end
def authorized?
can?(current_user, :create_protected_branch, protected_branch)
end
private
def protected_branch
@protected_branch ||= project.protected_branches.new(params)
end
end
end