summaryrefslogtreecommitdiff
path: root/lib/gitlab/cycle_analytics/build_updater.rb
blob: c1190d9e7a97a13f60ea2c98cc98c9f4b13011c0 (plain)
1
2
3
4
5
6
7
8
9
module Gitlab
  module CycleAnalytics
    class BuildUpdater < Updater
      def self.update!(event_result)
        new(event_result, ::Ci::Build, :build, 'id').update!
      end
    end
  end
end