This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
2008-10-01 02:19:35 -04:00
|
|
|
Merb.logger.info("Compiling routes...")
|
|
|
|
Merb::Router.prepare do |r|
|
2008-10-11 18:36:01 -04:00
|
|
|
# custom routes for specific thingeys
|
|
|
|
r.match('/').to(:controller => 'home', :action => 'index')
|
|
|
|
r.match('/acceptable_use').to(:controller => 'home', :action => 'acceptable_use')
|
|
|
|
r.match('/disclaimer').to(:controller => 'home', :action => 'disclaimer')
|
2008-10-11 04:22:58 -04:00
|
|
|
r.match('/hall_of_fame').to(:controller => 'home', :action => 'hall_of_fame')
|
|
|
|
|
2008-10-11 18:36:01 -04:00
|
|
|
# restful things
|
2008-10-01 02:19:35 -04:00
|
|
|
r.resources :sessions
|
|
|
|
r.resources :users
|
|
|
|
r.resources :votes
|
|
|
|
r.resources :favorites
|
2008-10-11 18:36:01 -04:00
|
|
|
r.resources :photos, :member => { :thumbnail => :get }
|
2008-10-01 02:19:35 -04:00
|
|
|
end
|