mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 02:54:40 +00:00
14 lines
252 B
Ruby
14 lines
252 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|