summaryrefslogtreecommitdiff
path: root/lib/gitlab/analytics/cycle_analytics/stage_events/merge_request_first_deployed_to_production.rb
blob: 654d0befbc3461c7e20108418e9a50403f926be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# frozen_string_literal: true

module Gitlab
  module Analytics
    module CycleAnalytics
      module StageEvents
        class MergeRequestFirstDeployedToProduction < MetricsBasedStageEvent
          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

          def timestamp_projection
            mr_metrics_table[:first_deployed_to_production_at]
          end

          # rubocop: disable CodeReuse/ActiveRecord
          def apply_query_customization(query)
            super.where(timestamp_projection.gteq(mr_table[:created_at]))
          end
          # rubocop: enable CodeReuse/ActiveRecord
        end
      end
    end
  end
end