mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-23 23:35:00 +08:00
13 lines
232 B
Ruby
13 lines
232 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
module V1
|
|
class RepositoryTimeValueSerializer < ActiveModel::Serializer
|
|
attribute :time
|
|
|
|
def time
|
|
object.data.strftime('%H:%M:%S.%3NZ')
|
|
end
|
|
end
|
|
end
|
|
end
|