-
Notifications
You must be signed in to change notification settings - Fork 148
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
Record files endpoint not found #54
Record files endpoint not found #54
Comments
The issue comes from RECORDS_FILES_REST_ENDPOINTS = {
'RECORDS_REST_ENDPOINTS': {
'recid': '/files',
}
} However, the ext.py file is If we set the above piece of config in Note When doing Pinging @fenekku cuz of knowledge/battles fought with config loading. If this is the way to go there is a PR for it (#61). Feel free to merge. |
#64 reopens the issue |
Following the installation docs and at the part of attaching a file to a record, the record generated is having a link to
"files": "https://localhost/api/records/<recid>/files"
. Following this link the server responds with404
.Note
Accessing the file directly through api, e.g
https://localhost/api/records/<recid>/files/my-image.jpg
works as expected.The text was updated successfully, but these errors were encountered: