Method: FilterTable::Table#callback_for_lazy_field
- Defined in:
- lib/utils/filter.rb
#callback_for_lazy_field(field_name) ⇒ Object
212 213 214 215 216 217 |
# File 'lib/utils/filter.rb', line 212 def callback_for_lazy_field(field_name) return unless is_field_lazy?(field_name) custom_properties_schema.values.find do |property_struct| property_struct.field_name == field_name end.opts[:lazy] end |