Method: FilterTable::Table#callback_for_lazy_field
- Defined in:
- lib/utils/filter.rb
#callback_for_lazy_field(field_name) ⇒ Object
204 205 206 207 208 209 |
# File 'lib/utils/filter.rb', line 204 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 |