scinote-web/app/models/repository_date_time_value.rb

19 lines
390 B
Ruby
Raw Normal View History

2019-11-18 22:21:57 +08:00
# frozen_string_literal: true
2019-12-06 19:50:19 +08:00
class RepositoryDateTimeValue < RepositoryDateTimeValueBase
def data_changed?(new_data)
2019-12-10 20:39:08 +08:00
new_time = Time.zone.parse(new_data)
new_time.to_i != data.to_i
end
2019-12-10 20:39:08 +08:00
def formatted
super(:full_with_comma)
end
def self.new_with_payload(payload, attributes)
value = new(attributes)
value.data = Time.zone.parse(payload)
value
end
2019-11-18 22:21:57 +08:00
end