Use `module: :auth` to wrap `devise_for` routes config (#30990)

main
Matt Jankowski 2024-07-11 07:13:55 -04:00 committed by GitHub
parent c244b70dc2
commit 6c37529723
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 7 deletions

View File

@ -104,13 +104,9 @@ Rails.application.routes.draw do
end
end
devise_for :users, path: 'auth', format: false, controllers: {
omniauth_callbacks: 'auth/omniauth_callbacks',
sessions: 'auth/sessions',
registrations: 'auth/registrations',
passwords: 'auth/passwords',
confirmations: 'auth/confirmations',
}
scope module: :auth do
devise_for :users, path: 'auth', format: false
end
with_options constraints: ->(req) { req.format.nil? || req.format.html? } do
get '/users/:username', to: redirect_with_vary('/@%{username}')