summaryrefslogtreecommitdiff
path: root/lib/gitlab/analytics/cycle_analytics/stage_events/plan_stage_start.rb
blob: 803317d8b55c4fa73c1cb699b08b7ef14a582506 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

module Gitlab
  module Analytics
    module CycleAnalytics
      module StageEvents
        class PlanStageStart < SimpleStageEvent
          def self.name
            s_("CycleAnalyticsEvent|Issue first associated with a milestone or issue first added to a board")
          end

          def self.identifier
            :plan_stage_start
          end

          def object_type
            Issue
          end
        end
      end
    end
  end
end