summaryrefslogtreecommitdiff
path: root/app/models/protected_branch/merge_access_level.rb
blob: df75c557717a9de46c039f363fee3fbbca064ced (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

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