-
-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docs: adds auth concept to glee docs #564
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
left some comments.
// done(true) | ||
//done(false, 401, "Unauthorized") | ||
// done(false) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean the done()
function parameters should be explained as well. something like:
Parameters
- Authentication Result (
Boolean
):true
for success,false
for failure. - HTTP Status Code (
Integer
): Code for authentication failure (e.g., 401 for Unauthorized). - Status Message (
String
): Description of the authentication result (e.g., "Unauthorized").
@oviecodes can you take a look here? 🙇 |
Hey @KhudaDad414 it means that the Client |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! let's wait for @Souvikns review.
Kudos, SonarCloud Quality Gate passed! |
/rtm |
🎉 This PR is included in version 0.32.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Description
This PR introduces glee auth features.
Related issue(s)