mirror of
https://github.com/redmine/redmine.git
synced 2025-11-13 08:46:01 +01:00
Unpacked OpenID gem. #699
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2437 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
24
vendor/gems/ruby-openid-2.1.4/examples/rails_openid/config/routes.rb
vendored
Normal file
24
vendor/gems/ruby-openid-2.1.4/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
|
||||
Reference in New Issue
Block a user