debian-mirror-gitlab/app/models/exported_protected_branch.rb
2021-02-22 17:27:13 +05:30

6 lines
231 B
Ruby

# frozen_string_literal: true
class ExportedProtectedBranch < ProtectedBranch
has_many :push_access_levels, -> { where(deploy_key_id: nil) }, class_name: "ProtectedBranch::PushAccessLevel", foreign_key: :protected_branch_id
end