2018-11-20 20:47:30 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
class ProtectedBranch::MergeAccessLevel < ApplicationRecord
|
2023-03-17 16:20:25 +05:30
|
|
|
include Importable
|
2016-09-13 17:45:13 +05:30
|
|
|
include ProtectedBranchAccess
|
2022-11-25 23:54:43 +05:30
|
|
|
# default value for the access_level column
|
|
|
|
GITLAB_DEFAULT_ACCESS_LEVEL = Gitlab::Access::MAINTAINER
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|