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

plan_stage_start.rb « stage_events « cycle_analytics « analytics « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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