This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
grindable/config/routes.rb

10 lines
349 B
Ruby

ActionController::Routing::Routes.draw do |map|
map.connect '', :controller => 'cafe', :action => 'index'
map.home '', :controller => 'cafe', :action => 'index'
map.login '/barista/login', :controller => 'barista', :action => 'identify'
map.connect ':controller/service.wsdl', :action => 'wsdl'
map.connect ':controller/:action/:id'
end