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

merge_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: 76e620aa3bfe7b4c07b8bf75bd937c56bb1a03d2 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

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