summaryrefslogtreecommitdiff
path: root/app/serializers/analytics_commit_entity.rb
blob: 402cecbfd087cf80bc05f2348b6ba57d26ccc87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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