ensl.org/config/routes.rb

145 lines
3.3 KiB
Ruby
Raw Normal View History

Ensl::Application.routes.draw do
2014-04-26 17:47:17 +00:00
%w(403 404 422 500).each do |code|
get code, to: "errors#show", code: code
2014-04-26 17:47:17 +00:00
end
namespace :api do
namespace :v1 do
resources :users, only: [:show, :index]
2016-04-16 23:05:18 +00:00
resources :teams, only: [:show]
2015-08-01 15:20:49 +00:00
resources :servers, only: [:index]
2015-08-01 15:34:01 +00:00
resources :maps, only: [:index]
end
end
2015-08-01 15:20:49 +00:00
root to: "articles#news_index"
2015-08-01 15:20:49 +00:00
resources :articles do
resources :versions
end
match "contests/del_map"
match "contests/scores"
match "contests/historical", to: "contests#historical"
2015-08-01 15:20:49 +00:00
resources :contests do
get "current", on: :collection
2015-08-01 15:20:49 +00:00
end
resources :log_events
2015-08-01 15:20:49 +00:00
resources :categories
resources :options
resources :polls
match "comments/quote"
2015-08-01 15:20:49 +00:00
resources :comments
resources :shoutmsgs
resources :teamers
resources :teams
resources :gathers
resources :gatherers
resources :groups
resources :groupers
resources :forumers
resources :topics
match "forums/up"
match "forums/down"
2015-08-01 15:20:49 +00:00
resources :forums
resources :users
resources :locks
resources :contesters
get "contests/:id/confirmedmatches" => "contests#confirmed_matches", as: :confirmed_matches
2015-08-01 15:20:49 +00:00
resources :contests
resources :challenges
resources :servers
resources :predictions
resources :rounds
get "matches/ref/:id" => "matches#ref", as: :match_ref
resources :matches do
get :admin, to: "matches#admin", on: :collection
resources :match_proposals, path: "proposals", as: :proposals, only: [:index, :new, :create, :update]
2014-05-10 08:44:48 +00:00
end
2015-08-01 15:20:49 +00:00
resources :maps
resources :logs
resources :log_files
resources :directories
resources :data_files
2015-08-01 15:20:49 +00:00
resources :predictions
resources :weeks
resources :movies
resources :messages
resources :sites
resources :bans
resources :tweets
resources :issues
match "posts/quote"
2015-08-01 15:20:49 +00:00
resources :posts
resources :brackets
match "about/action"
match "about/staff"
match "about/statistics"
match "refresh", to: "application#refresh"
match "search", to: "application#search"
match "news", to: "articles#news_index"
match "news/archive", to: "articles#news_archive"
match "news/admin", to: "articles#admin"
match "articles/cleanup"
match "data_files/admin"
match "data_files/addFile"
match "data_files/delFile"
match "data_files/trash"
match "contesters/recalc"
match "directories", to: "directories#show", id: 1
match "gathers/refresh"
match "gathers/latest/:game", to: "gathers#latest", via: :get
match "gather", to: "gathers#latest", game: "ns2", via: :get
match "gatherers/:id/status", to: "gatherers#status", via: :post
match "groups/addUser"
match "groups/delUser"
match "movies/download"
match "movies/preview"
match "movies/snapshot"
match "plugin/user"
2015-06-15 22:16:44 +00:00
match "users/forgot"
match "users/recover"
match "users/agenda"
match "users/logout"
match "users/login"
match "users/agenda"
match "users/login"
match "users/logout"
match "users/popup"
match "users/forgot", to: "users#forgot"
match "votes/create"
match "polls/showvotes/:id", to: "polls#showvotes", as: "polls_showvotes"
match ":controller/:action", requirements: { action: /A-Za-z/ }
match ":controller/:action/:id"
match ":controller/:action/:id.:format"
match ":controller/:action/:id/:id2"
match "teamers/replace", to: "teamers#replace", as: "teamers_replace"
end