-
Notifications
You must be signed in to change notification settings - Fork 4
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
added initial apikey endpoint #26
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.
Please have the __init__.py
and util.py
modules of the endpoints
directory in a separate pull request. A bunch of commits are redone here that are already done before with the inclusion of these files.
Also, please follow #2 (comment).
from ..database import db | ||
from ..models.apikey import APIKey | ||
from ..models.user import User |
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.
Ref. #24 (comment)
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.
Once you are done with addressing the newly suggested changes, please squash the commits into just one. Every other change can be added after this is merged.
|
||
|
||
|
||
|
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.
Please do not mark comments as resolved - especially when the suggested change is not addressed. Instead of leaving five lines at the end of the line - please leave just one line.
should I squash all commits so far into one or should I squash them into 1 after every review? |
|
95c2f63
to
6b79a7a
Compare
Signed-off-by: Akashdeep Dhar <[email protected]> Fix the Vagrant environment Signed-off-by: Aurélien Bompard <[email protected]> resolve review delete __init__ and util
6b79a7a
to
2c0e3db
Compare
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.
Please update the branch to ensure that you keep up with the rebasing merge and once that is done, only include the codebase relevant to this pull request here. Finally, squash the commits and let me know in the channel so I can review it again.
How do I fix the interfering commits like in this branch? |
This PR adds the apikey endpoint #6