gitlab-org--gitlab-foss/lib/banzai/reference_parser/label_parser.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
339 B
Ruby
Raw Permalink Normal View History

# 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