Class: ActionDispatch::Routing::Mapper

Inherits:
Object
  • Object
show all
Defined in:
lib/carnival/routes.rb

Instance Method Summary collapse

Instance Method Details

#mount_carnival_at(mount_location) ⇒ Object



3
4
5
6
7
8
9
10
11
# File 'lib/carnival/routes.rb', line 3

def mount_carnival_at(mount_location)
  Carnival::Config.mount_at = mount_location
  get "/carnival/load_select_options" => 'carnival/base_admin#load_select_options', as: :load_select_options
  scope mount_location do
    get "carnival-base/load_dependent_select_options/:presenter/:field/:dependency_field/:dependency_value" => 'carnival/base_admin#load_dependent_select_options', as: :load_dependent_select_options
    get "render_inner_form" => 'carnival/base_admin#render_inner_form' 
    root to: Carnival::Config.root_action, :as => :carnival_root
  end
end