diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 15:00:52 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 15:00:52 -0400 |
commit | 7971d7ac77c83717afcceaa1f476d1eb9afd5918 (patch) | |
tree | 5253143e7725b3f870d2f7070cf7b767c80ae1e7 /config | |
parent | 1c606f4a6e99576614f5ce3c698f56e96d03e6a3 (diff) | |
download | thoughts-7971d7ac77c83717afcceaa1f476d1eb9afd5918.tar.gz thoughts-7971d7ac77c83717afcceaa1f476d1eb9afd5918.tar.bz2 thoughts-7971d7ac77c83717afcceaa1f476d1eb9afd5918.zip |
Styled password reset form
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 449cda1..1003a8b 100644 --- a/config/routes.rb +++ b/config/routes.rb | |||
@@ -6,7 +6,11 @@ Rails.application.routes.draw do | |||
6 | end | 6 | end |
7 | 7 | ||
8 | mount Ckeditor::Engine => '/ckeditor' | 8 | mount Ckeditor::Engine => '/ckeditor' |
9 | devise_for :users, controllers: { sessions: 'users/sessions' } | 9 | |
10 | devise_for :users, controllers: { | ||
11 | sessions: 'users/sessions', | ||
12 | passwords: 'users/passwords' | ||
13 | } | ||
10 | 14 | ||
11 | root "records#index" | 15 | root "records#index" |
12 | 16 | ||