OSDN Git Service

update
[pettanr/pettanr.git] / config / routes.rb
1 Pettanr::Application.routes.draw do
2
3   devise_for :admins
4   devise_for :authors
5
6   match 'original_pictures/:id(.:format)/refresh' => 'original_pictures#refresh'
7
8   resources :artists, except: [:new, :edit]
9   resources :speaches, only: [:index]
10   resources :balloons, only: [:index]
11   resources :speach_templates, only: [:index]
12   resources :balloon_templates, only: [:index]
13   resources :speach_balloons, except: [:new, :edit]
14   resources :panel_pictures, only: [:index]
15   resources :resource_pictures, only: [:index, :show]
16   resources :original_pictures, except: [:new]
17   resources :panels, except: [:new, :edit]
18   resources :comics, except: [:new, :edit]
19   resources :lisences, only: [:index]
20   resources :original_lisences
21   resources :common_lisences
22   resources :system_pictures, except: [:new, :edit]
23
24   # The priority is based upon order of creation:
25   # first created -> highest priority.
26
27   # Sample of regular route:
28   #   match 'products/:id' => 'catalog#view'
29   # Keep in mind you can assign values other than :controller and :action
30   match 'comics/:id(.:format)/play' => 'comics#play'
31   match 'resource_pictures/:subdir/:id(.:format)/' => 'resource_pictures#show'
32   match 'home/(:action)', :controller => 'home'
33   match 'help/(:action)', :controller => 'help'
34   controller 'system' do
35     get 'start'
36     get 'index'
37 #    match 'start', :to => 'system#start'
38   end
39   
40   # Sample of named route:
41   #   match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
42   # This route can be invoked with purchase_url(:id => product.id)
43
44   # Sample resource route (maps HTTP verbs to controller actions automatically):
45   #   resources :products
46
47   # Sample resource route with options:
48   #   resources :products do
49   #     member do
50   #       get 'short'
51   #       post 'toggle'
52   #     end
53   #
54   #     collection do
55   #       get 'sold'
56   #     end
57   #   end
58
59   # Sample resource route with sub-resources:
60   #   resources :products do
61   #     resources :comments, :sales
62   #     resource :seller
63   #   end
64
65   # Sample resource route with more complex sub-resources
66   #   resources :products do
67   #     resources :comments
68   #     resources :sales do
69   #       get 'recent', :on => :collection
70   #     end
71   #   end
72
73   # Sample resource route within a namespace:
74   #   namespace :admin do
75   #     # Directs /admin/products/* to Admin::ProductsController
76   #     # (app/controllers/admin/products_controller.rb)
77   #     resources :products
78   #   end
79
80   # You can have the root of your site routed with "root"
81   # just remember to delete public/index.html.
82   root :to => 'comics#top'
83
84   # See how all your routes lay out with "rake routes"
85
86   # This is a legacy wild controller route that's not recommended for RESTful applications.
87   # Note: This route will make all actions in every controller accessible via GET requests.
88 #  match ':controller(/:action(/:id(.:format)))'
89 end