Add dashboard, allow password resets when signed in

This commit is contained in:
2020-11-11 18:56:06 +01:00
parent 674b0a0ff5
commit a09741ba28
14 changed files with 86 additions and 13 deletions

View File

@@ -2,14 +2,17 @@ Rails.application.routes.draw do
devise_for :users
get 'settings', to: 'settings#index'
post 'settings_reset_password', to: 'settings#reset_password'
get 'welcome', to: 'welcome#index'
get 'check_your_email', to: 'welcome#check_your_email'
get 'ldap_users', to: 'ldap_users#index'
# Letter Opener (open "sent" emails in dev and staging)
if Rails.env.match(/staging|development/)
mount LetterOpenerWeb::Engine, at: "letter_opener"
end
root to: 'welcome#index'
root to: 'dashboard#index'
end