d598e4fd93
Enables frozen for the following: * lib/*.rb * lib/banzai/**/*.rb * lib/bitbucket/**/*.rb * lib/constraints/**/*.rb * lib/container_registry/**/*.rb * lib/declarative_policy/**/*.rb Partially addresses #47424.
19 lines
339 B
Ruby
19 lines
339 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Banzai
|
|
module ReferenceParser
|
|
class LabelParser < BaseParser
|
|
self.reference_type = :label
|
|
|
|
def references_relation
|
|
Label
|
|
end
|
|
|
|
private
|
|
|
|
def can_read_reference?(user, ref_project, node)
|
|
can?(user, :read_label, ref_project)
|
|
end
|
|
end
|
|
end
|
|
end
|