gitlab-org--gitlab-foss/lib/gitlab/cycle_analytics/author_updater.rb

9 lines
186 B
Ruby

module Gitlab
module CycleAnalytics
class AuthorUpdater < Updater
def self.update!(event_result)
new(event_result, User, :author).update!
end
end
end
end