gitlab-org--gitlab-foss/app/serializers/time_trackable_entity.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
252 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-11-01 17:35:14 +00:00
module TimeTrackableEntity
extend ActiveSupport::Concern
extend Grape
included do
expose :time_estimate
expose :total_time_spent
expose :human_time_estimate
expose :human_total_time_spent
end
end