debian-mirror-gitlab/lib/gitlab/analytics/cycle_analytics/stage_events/plan_stage_start.rb

24 lines
485 B
Ruby
Raw Normal View History

2019-12-04 20:38:33 +05:30
# 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