2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
class AnalyticsCommitEntity < CommitEntity
|
|
|
|
include EntityDateHelper
|
|
|
|
|
|
|
|
expose :short_id, as: :short_sha
|
|
|
|
|
|
|
|
expose :total_time do |commit|
|
|
|
|
distance_of_time_as_hash(request.total_time.to_f)
|
|
|
|
end
|
|
|
|
|
|
|
|
unexpose :author_name
|
|
|
|
unexpose :author_email
|
|
|
|
unexpose :message
|
|
|
|
end
|