datetime.rb 303 B

123456789101112
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class FormUpdater::ApplyValue::Datetime < FormUpdater::ApplyValue::Date
  3. def can_handle_field?(field:, field_attribute:)
  4. field_attribute&.data_type == 'datetime'
  5. end
  6. def format_time(time)
  7. time.iso8601
  8. end
  9. end