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

timeline_event_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: 514a2bf0a567a3f31e60f6bcc7322f8adbc1eec6 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

module IncidentManagement
  class TimelineEventPolicy < ::BasePolicy
    delegate { @subject.incident }
  end
end