This repository has been archived by the owner on Jul 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
New Auth System + Added logout and allowed updating user info #92
Merged
Conversation
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
SQL Risks Found
|
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What this pull request adds is a short revamp on the authentication system, as it adds a
Refresh Token
.Refresh Tokens
are used to refreshAccess Tokens
, that way if a users permissions were updated or their info was updated, it can be updated without having to always check the database on the user info.Access Tokens
usually expire in an hour but can be changed. It's recommended to keep the time short though.This PR also adds a new endpoint, which is
/api/user
. This allows the user to be able to update their info, such as email, name, and password.You can also delete the session or logout by doing a
POST
request to/api/user/logout
. This is also added in the billing page where you can logout.I've also fixed a bug where if a JWT token was expired, it crashes the server unless its restarted.
If there are any bugs with this PR, please let me know so I can fix them.