gitlab-org--gitlab-foss/app/models/concerns/protected_branch_access.rb

12 lines
197 B
Ruby

module ProtectedBranchAccess
extend ActiveSupport::Concern
included do
include ProtectedRefAccess
belongs_to :protected_branch
delegate :project, to: :protected_branch
end
end