diff options
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index f94bd2f..c1bbf52 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -24,8 +24,14 @@ Leaguer::Application.routes.draw do end root to: 'static#homepage' + get '/testsvg', to: 'static#test' + + get '/search', to: 'search#go' + end + + Leaguer::Application.routes.named_routes.module.module_eval do def match_path(match, options={}) tournament_match_path(match.tournament_stage.tournament, match, options) |