Sha256: bf226bd0cc51c3978f16c72a6c4c20fd5af21c090fb3794716e1e9fbf130b2c6
Contents?: true
Size: 596 Bytes
Versions: 76
Compression:
Stored size: 596 Bytes
Contents
# frozen_string_literal: true module Spotlight # A configurable solr filter for the exhibit class Filter < ActiveRecord::Base belongs_to :exhibit validates :field, :value, presence: true def to_hash return {} unless field { field => cast_value } end private def cast_value return value unless field if field.ends_with? Spotlight::Engine.config.solr_fields.boolean_suffix value_to_boolean(value) else value end end def value_to_boolean(v) ActiveModel::Type::Boolean.new.cast v end end end
Version data entries
76 entries across 76 versions & 1 rubygems