Method: Pageflow::Configuration::ConfigView#method_missing

Defined in:
lib/pageflow/configuration.rb

#method_missing(method, *args) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



583
584
585
586
587
588
589
590
591
# File 'lib/pageflow/configuration.rb', line 583

def method_missing(method, *args)
  if @config.respond_to?(method)
    @config.send(method, *args)
  elsif @entry_type_config.respond_to?(method)
    @entry_type_config.send(method, *args)
  else
    super
  end
end