mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-03 16:37:48 +00:00

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.
20 lines
355 B
Ruby
20 lines
355 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Banzai
|
|
module ReferenceParser
|
|
class MilestoneParser < BaseParser
|
|
self.reference_type = :milestone
|
|
|
|
def references_relation
|
|
Milestone
|
|
end
|
|
|
|
private
|
|
|
|
def can_read_reference?(user, ref_project, node)
|
|
can?(user, :read_milestone, ref_project)
|
|
end
|
|
end
|
|
end
|
|
end
|