debian-mirror-gitlab/app/serializers/analytics_commit_entity.rb
2018-11-18 11:00:15 +05:30

16 lines
305 B
Ruby

# frozen_string_literal: true
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