pushtype/push_type

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

Summary

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

    options json_primitive: :boolean,
            form_helper: :check_box

    def value
      json_value.to_bool
    end

  end
end