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

24 lines
512 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 MergeRequestFirstDeployedToProduction < SimpleStageEvent
def self.name
s_("CycleAnalyticsEvent|Merge request first deployed to production")
end
def self.identifier
:merge_request_first_deployed_to_production
end
def object_type
MergeRequest
end
end
end
end
end
end