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

usage_data.rb « incident_management « concerns « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b91aa59099d5c781884b5c5da27bf81d0ff34bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

module IncidentManagement
  module UsageData
    include Gitlab::Utils::UsageData

    def track_incident_action(current_user, target, action)
      return unless target.incident?

      track_usage_event(:"incident_management_#{action}", current_user.id)
    end

    # No-op as optionally overridden in implementing classes.
    # For use to provide checks before calling #track_incident_action.
    def track_event
    end
  end
end