gitlab-ce/app/models/protected_branch/push_access_level.rb

9 lines
269 B
Ruby

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