Add well known route for changing password
This commit is contained in:
parent
93fb487cfc
commit
5a07c7a8ce
|
@ -158,5 +158,7 @@ Rails.application.routes.draw do
|
||||||
match '/feedback/bugs(/*any)', to: 'feedback#bugs', via: 'get', as: 'feedback_bugs'
|
match '/feedback/bugs(/*any)', to: 'feedback#bugs', via: 'get', as: 'feedback_bugs'
|
||||||
match '/feedback/feature_requests(/*any)', to: 'feedback#features', via: 'get', as: 'feedback_features'
|
match '/feedback/feature_requests(/*any)', to: 'feedback#features', via: 'get', as: 'feedback_features'
|
||||||
|
|
||||||
|
get '/.well-known/change-password', to: redirect('/settings/account')
|
||||||
|
|
||||||
puts 'processing time of routes.rb: ' + "#{(Time.now - start).round(3).to_s.ljust(5, '0')}s".light_green
|
puts 'processing time of routes.rb: ' + "#{(Time.now - start).round(3).to_s.ljust(5, '0')}s".light_green
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue