mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
13 lines
264 B
Ruby
13 lines
264 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ActiveJob
|
|
module Serializers
|
|
class TimeObjectSerializer < ObjectSerializer # :nodoc:
|
|
NANO_PRECISION = 9
|
|
|
|
def serialize(time)
|
|
super("value" => time.iso8601(NANO_PRECISION))
|
|
end
|
|
end
|
|
end
|
|
end
|