Welcome to mirror list, hosted at ThFree Co, Russian Federation.

timeline_event_tag_policy.rb « incident_management « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e2268d917b4aac652613dea82c25a26a8f5eb057 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module IncidentManagement
  class TimelineEventTagPolicy < ::BasePolicy
    delegate { @subject.project }
  end
end