-
Notifications
You must be signed in to change notification settings - Fork 0
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
Feature/basic api #1
Conversation
ee1eef3
to
02f978e
Compare
02f978e
to
39f0b47
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.
It's a nice simple API, so le'ts make code clean and simple
- Please make CI green and happy
- Please remove jenkins from the project if you are not going to use it (including all mentioning in the docs)
- README.rst needs some love: description, keywords and correct links are nice to have
- INSTALL.rst also needs some love
- link to repo are not corrected
- fixtures loaded in Docker section don't exist
- "building and publishing the image" section uses file which doesn't exist
- Please remove all unused code
- 'ci' folder. Or is it used somewhere?
- commands in 'bin/' folder, for example all 'celery_*' ones
- "tests/test_celery_beat" doesn't seem to be needed
- "templates/sniplates", since you don't have sniplates in the reqs
- "templates/hijack", since you don't have hijack in the reqs
- "templates/samples" or is it used?
- "utils/pdf"
- Admin dashboard doesn't look nice, all the resources are put in the one "overige" group. It can be addressed in the next PR, in this case please create an issue for it
- Helptext icons in the admin forms are displayed strangely
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
name: "CodeQL" |
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'm not sure private repositories can have code scanning
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.
Does it work?
ea9eeb4
to
f452792
Compare
b07cce5
to
f642335
Compare
f642335
to
7bab4d5
Compare
feb291e
to
2d0c1af
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.
It looks like these things were not addressed:
- Admin dashboard doesn't look nice, all the resources are put in the one "overige" group. > It can be addressed in the next PR, in this case please create an issue for it
- Helptext icons in the admin forms are displayed strangely
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
name: "CodeQL" |
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.
Does it work?
26a2088
to
d3a0872
Compare
@annashamray can you please elaborate what you mean with "Helptext icons in the admin forms are displayed strangely"? |
@bart-maykin this is how Item admin page looks for me Help-text icons should be near the field names, not below |
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.
CSS styling works for me now, so approve.
Please take a look at my comment about pathlib. It's not required now, but it's more preferable to use
@@ -1,18 +1,20 @@ | |||
import os | |||
from pathlib import Path |
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.
Pathlib
is considered more modern than os.path
, so I think replacing it back was unnecessary
Fixes #5
Added basic api with token auth, redoc and landing page