-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make the login attempt a bit more user friendly
- Loading branch information
Showing
12 changed files
with
179 additions
and
55 deletions.
There are no files selected for viewing
32 changes: 22 additions & 10 deletions
32
...fe82e1a2ebae23511b4cab1ae841309b0a11.json → ...4ca7b1b724bf76e85da46c646b071103a0ba.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
16 changes: 14 additions & 2 deletions
16
...4747b936ce248d49a7dfbe549b25bfaa2058.json → ...77c8f810747054b90a272e74529cdda0b14e.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 5 additions & 3 deletions
8
...9880c9cc8f7b8f3ed7115beef051951869ca.json → ...f99600235809bc11acf20eb6e80ee4284303.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
4 changes: 4 additions & 0 deletions
4
migrations/20240219224335_add_more_data_to_login_attempt.down.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Add down migration script here | ||
|
||
alter table github_login_attempts drop column if exists challenge_uri; | ||
alter table github_login_attempts drop column if exists user_code; |
4 changes: 4 additions & 0 deletions
4
migrations/20240219224335_add_more_data_to_login_attempt.up.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-- Add up migration script here | ||
|
||
alter table github_login_attempts add column challenge_uri text not null; | ||
alter table github_login_attempts add column user_code text not null; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.