-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Request parameter + max_age parameter
- Loading branch information
1 parent
114a975
commit 61a1ff1
Showing
7 changed files
with
212 additions
and
81 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ | |
) | ||
FAKE_CODE_CHALLENGE = "YlYXEqXuRm-Xgi2BOUiK50JW1KsGTX6F1TDnZSC8VTg" | ||
FAKE_CODE_VERIFIER = "SmxGa0XueyNh5bDgTcSrqzAh2_FmXEqU8kDT6CuXicw" | ||
FAKE_USER_PASSWORD = "1234" | ||
|
||
|
||
def create_fake_user(): | ||
|
@@ -39,7 +40,7 @@ def create_fake_user(): | |
user.email = "[email protected]" | ||
user.first_name = "John" | ||
user.last_name = "Doe" | ||
user.set_password("1234") | ||
user.set_password(FAKE_USER_PASSWORD) | ||
|
||
user.save() | ||
|
||
|
Oops, something went wrong.