pushtype/push_type

View on GitHub
core/app/fields/push_type/time_field.rb

Summary

Maintainability
A
0 mins
Test Coverage
module PushType
  class TimeField < PushType::FieldType

    options template:     'date',
            form_helper:  :time_field

    def value
      json_value.to_time unless json_value.blank?
    end
    
  end
end