Skip to content

Commit 7966208

Browse files
committed
Expand with note about password resets
1 parent fb7544b commit 7966208

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

railties/CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
*Sean Doyle*
99

10-
* Add authentication generator to give a basic start to an authentication system using database-tracked sessions.
10+
* Add authentication generator to give a basic start to an authentication system using database-tracked sessions and password reset.
1111

1212
Generate with...
1313

@@ -22,9 +22,16 @@
2222
app/models/user.rb
2323
app/models/session.rb
2424
app/controllers/sessions_controller.rb
25+
app/controllers/passwords_controller.rb
26+
app/mailers/passwords_mailer.rb
2527
app/views/sessions/new.html.erb
28+
app/views/passwords/new.html.erb
29+
app/views/passwords/edit.html.erb
30+
app/views/passwords_mailer/reset.html.erb
31+
app/views/passwords_mailer/reset.text.erb
2632
db/migrate/xxxxxxx_create_users.rb
2733
db/migrate/xxxxxxx_create_sessions.rb
34+
test/mailers/previews/passwords_mailer_preview.rb
2835
```
2936
3037
*DHH*

0 commit comments

Comments
 (0)