Skip to content
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

Split API URLs into more digestible bits. #134

Closed
terjekv opened this issue May 9, 2023 · 0 comments · Fixed by #136
Closed

Split API URLs into more digestible bits. #134

terjekv opened this issue May 9, 2023 · 0 comments · Fixed by #136
Assignees
Labels
enhancement New feature or request

Comments

@terjekv
Copy link
Collaborator

terjekv commented May 9, 2023

The splitting of views was a very good thing, and doing the same to URLs should be done. In doing this, there is also bound to be some reorganisation of the URLs as well. Suggested scopes:

urlpatterns = [
    path("", include(router.urls)),
    path("iam", include(iam.urls)),
    path("attachments", include(attachment.urls)),
    path("extensions", include(extension.urls)),
    path("resources", include(resource.urls)),
]

This will require a lot of rewriting of tests, which may be combined with some early work on #68 when applicable.

@terjekv terjekv self-assigned this May 9, 2023
@terjekv terjekv added the enhancement New feature or request label May 9, 2023
terjekv added a commit that referenced this issue May 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant