Welcome to mirror list, hosted at ThFree Co, Russian Federation.

push_access_level.rb « protected_branch « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53cec0c551101b6815192aa9f0a0dd319cabca0f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ProtectedBranch::PushAccessLevel < ApplicationRecord
  include Importable
  include ProtectedBranchAccess
  include ProtectedRefDeployKeyAccess
  # default value for the access_level column
  GITLAB_DEFAULT_ACCESS_LEVEL = Gitlab::Access::MAINTAINER
end