module ModelMixins::TableSettingsInterface

Public Instance Methods

table_settings() { |settings| ... } click to toggle source
# File lib/model_mixins/table_settings_interface.rb, line 3
def table_settings
  settings = ::TableSettings.new(self)
  yield(settings) if block_given?
  settings
end