File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -524,7 +524,7 @@ class SessionsController < ApplicationController
524524
525525 def destroy
526526 logout
527- redirect_to root_path, notice: " Singed out."
527+ redirect_to root_path, notice: " Signed out."
528528 end
529529
530530 def new
@@ -1326,7 +1326,7 @@ You can read more about session replay attacks [here](https://binarysolo.chapter
132613261 . Add a session_token column to users table.
13271327
13281328``` bash
1329- rails g migration add add_session_token_to_users session_token:string
1329+ rails g migration add_session_token_to_users session_token:string
13301330```
13311331
133213322 . Update migration.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def create
2222 def destroy
2323 forget ( current_user )
2424 logout
25- redirect_to root_path , notice : "Singed out."
25+ redirect_to root_path , notice : "Signed out."
2626 end
2727
2828 def new
You can’t perform that action at this time.
0 commit comments