mirror of
https://github.com/kbparagua/paloma
synced 2023-03-27 23:21:17 -04:00
23 lines
419 B
Ruby
23 lines
419 B
Ruby
TestApp::Application.routes.draw do
|
|
|
|
mount JasmineRails::Engine => "/specs" if defined?(JasmineRails)
|
|
|
|
root :to => 'main#index'
|
|
|
|
resources :main, :controller => 'Main' do
|
|
collection do
|
|
get :prevent
|
|
get :basic_params
|
|
get :json_response
|
|
get :js_response
|
|
get :xml_response
|
|
get :file_response
|
|
get :ajax
|
|
end
|
|
end
|
|
|
|
|
|
namespace :admin do
|
|
resources :foos
|
|
end
|
|
end
|