Change /settings/preferences to redirect to appearance, add /settings/preferences/other (#10988)
This commit is contained in:
parent
cdb420862e
commit
560ec24e58
5 changed files with 18 additions and 7 deletions
|
@ -87,15 +87,17 @@ Rails.application.routes.draw do
|
|||
get '/explore', to: 'directories#index', as: :explore
|
||||
get '/explore/:id', to: 'directories#show', as: :explore_hashtag
|
||||
|
||||
get '/settings', to: redirect('/settings/preferences')
|
||||
get '/settings', to: redirect('/settings/profile')
|
||||
|
||||
namespace :settings do
|
||||
resource :profile, only: [:show, :update]
|
||||
resource :preferences, only: [:show, :update]
|
||||
|
||||
get :preferences, to: redirect('/settings/preferences/appearance')
|
||||
|
||||
namespace :preferences do
|
||||
resource :appearance, only: [:show, :update], controller: :appearance
|
||||
resource :notifications, only: [:show, :update]
|
||||
resource :other, only: [:show, :update], controller: :other
|
||||
end
|
||||
|
||||
resource :import, only: [:show, :create]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue