summaryrefslogtreecommitdiff
path: root/app/models/protected_branch/merge_access_level.rb
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