routes: remove unused `:page` param and all `:via` options

This commit is contained in:
Georg Gadinger 2023-01-21 20:07:15 +01:00 committed by Andreas Nedbal
parent eb7abb33be
commit 3b81dc33db
1 changed files with 13 additions and 13 deletions

View File

@ -40,7 +40,7 @@ Rails.application.routes.draw do
end end
authenticate :user do authenticate :user do
root to: "timeline#index", via: :get, as: :timeline root to: "timeline#index", as: :timeline
end end
get "/about", to: "about#about" get "/about", to: "about#about"
@ -151,21 +151,21 @@ Rails.application.routes.draw do
post "/inbox/create", to: "inbox#create", as: :inbox_create post "/inbox/create", to: "inbox#create", as: :inbox_create
get "/inbox", to: "inbox#show", as: :inbox get "/inbox", to: "inbox#show", as: :inbox
get "/user/:username(/p/:page)", to: "user#show", defaults: { page: 1 } get "/user/:username", to: "user#show"
get "/@:username(/p/:page)", to: "user#show", as: :user, defaults: { page: 1 } get "/@:username", to: "user#show", as: :user
get "/@:username/a/:id", to: "answer#show", via: "get", as: :answer get "/@:username/a/:id", to: "answer#show", as: :answer
get "/@:username/q/:id", to: "question#show", as: :question get "/@:username/q/:id", to: "question#show", as: :question
get "/@:username/followers(/p/:page)", to: "user#followers", as: :show_user_followers, defaults: { page: 1 } get "/@:username/followers", to: "user#followers", as: :show_user_followers
get "/@:username/followings(/p/:page)", to: "user#followings", as: :show_user_followings, defaults: { page: 1 } get "/@:username/followings", to: "user#followings", as: :show_user_followings
get "/@:username/friends(/p/:page)", to: redirect("/@%{username}/followings/p/%{page}"), defaults: { page: 1 } get "/@:username/friends", to: redirect("/@%{username}/followings/p/%{page}")
get "/@:username/questions(/p/:page)", to: "user#questions", as: :show_user_questions, defaults: { page: 1 } get "/@:username/questions", to: "user#questions", as: :show_user_questions
get "/:username(/p/:page)", to: "user#show", as: :user_alt, defaults: { page: 1 } get "/:username", to: "user#show", as: :user_alt
get "/:username/a/:id", to: "answer#show", as: :answer_alt get "/:username/a/:id", to: "answer#show", as: :answer_alt
get "/:username/q/:id", to: "question#show", as: :question_alt get "/:username/q/:id", to: "question#show", as: :question_alt
get "/:username/followers(/p/:page)", to: "user#followers", as: :show_user_followers_alt, defaults: { page: 1 } get "/:username/followers", to: "user#followers", as: :show_user_followers_alt
get "/:username/followings(/p/:page)", to: "user#followings", as: :show_user_followings_alt, defaults: { page: 1 } get "/:username/followings", to: "user#followings", as: :show_user_followings_alt
get "/:username/friends(/p/:page)", to: redirect("/%{username}/followings/p/%{page}"), defaults: { page: 1 } get "/:username/friends", to: redirect("/%{username}/followings/p/%{page}")
get "/:username/questions(/p/:page)", to: "user#questions", as: :show_user_questions_alt, defaults: { page: 1 } get "/:username/questions", to: "user#questions", as: :show_user_questions_alt
get "/feedback/consent", to: "feedback#consent", as: "feedback_consent" get "/feedback/consent", to: "feedback#consent", as: "feedback_consent"
post "/feedback/consent/update", to: "feedback#update", as: "feedback_consent_update" post "/feedback/consent/update", to: "feedback#update", as: "feedback_consent_update"