diff options
Diffstat (limited to 'app/models/protected_branch')
-rw-r--r-- | app/models/protected_branch/merge_access_level.rb | 1 | ||||
-rw-r--r-- | app/models/protected_branch/push_access_level.rb | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/models/protected_branch/merge_access_level.rb b/app/models/protected_branch/merge_access_level.rb index df75c557717..76e620aa3bf 100644 --- a/app/models/protected_branch/merge_access_level.rb +++ b/app/models/protected_branch/merge_access_level.rb @@ -1,6 +1,7 @@ # 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 diff --git a/app/models/protected_branch/push_access_level.rb b/app/models/protected_branch/push_access_level.rb index 6076fab20b7..66fe57be25f 100644 --- a/app/models/protected_branch/push_access_level.rb +++ b/app/models/protected_branch/push_access_level.rb @@ -1,6 +1,7 @@ # frozen_string_literal: true class ProtectedBranch::PushAccessLevel < ApplicationRecord + include Importable include ProtectedBranchAccess # default value for the access_level column GITLAB_DEFAULT_ACCESS_LEVEL = Gitlab::Access::MAINTAINER |