mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-21 09:40:13 +01:00
Upgraded to open_id_authentication plugin at 00d8bc7f97 and unpacked ruby-openid gem version 2.1.2.
This commit is contained in:
parent
6149900e0c
commit
e92dae2ffc
227 changed files with 30857 additions and 669 deletions
24
vendor/gems/ruby-openid-2.1.2/examples/rails_openid/config/routes.rb
vendored
Normal file
24
vendor/gems/ruby-openid-2.1.2/examples/rails_openid/config/routes.rb
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
ActionController::Routing::Routes.draw do |map|
|
||||
# Add your own custom routes here.
|
||||
# The priority is based upon order of creation: first created -> highest priority.
|
||||
|
||||
# Here's a sample route:
|
||||
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
|
||||
# Keep in mind you can assign values other than :controller and :action
|
||||
|
||||
# You can have the root of your site routed by hooking up ''
|
||||
# -- just remember to delete public/index.html.
|
||||
# map.connect '', :controller => "welcome"
|
||||
|
||||
map.connect '', :controller => 'login'
|
||||
map.connect 'server/xrds', :controller => 'server', :action => 'idp_xrds'
|
||||
map.connect 'user/:username', :controller => 'server', :action => 'user_page'
|
||||
map.connect 'user/:username/xrds', :controller => 'server', :action => 'user_xrds'
|
||||
|
||||
# Allow downloading Web Service WSDL as a file with an extension
|
||||
# instead of a file named 'wsdl'
|
||||
map.connect ':controller/service.wsdl', :action => 'wsdl'
|
||||
|
||||
# Install the default route as the lowest priority.
|
||||
map.connect ':controller/:action/:id'
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue