22 lines
446 B
Ruby
22 lines
446 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Atlassian
|
|
module JiraConnect
|
|
module Serializers
|
|
class BaseEntity < Grape::Entity
|
|
include Gitlab::Routing
|
|
include GitlabRoutingHelper
|
|
|
|
format_with(:string) { |value| value.to_s }
|
|
|
|
expose :monotonic_time, as: :updateSequenceId
|
|
|
|
private
|
|
|
|
def monotonic_time
|
|
Gitlab::Metrics::System.monotonic_time.to_i
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|