-
Notifications
You must be signed in to change notification settings - Fork 3.4k
[WEB-5050] feat: updated work item urls with issues. #7871
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
af47785
feat: updated work item urls with issues.
sriramveeraghanta d6a97fe
chore: updated urls names
sriramveeraghanta b493888
chore: rename file
sriramveeraghanta 5e2678f
chore: code refactor for url ordering
sriramveeraghanta 0a33da2
fix: renamed issue-atachments to attachments
sriramveeraghanta File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,23 @@ | ||
| from .project import urlpatterns as project_patterns | ||
| from .state import urlpatterns as state_patterns | ||
| from .issue import urlpatterns as issue_patterns | ||
| from .asset import urlpatterns as asset_patterns | ||
| from .cycle import urlpatterns as cycle_patterns | ||
| from .module import urlpatterns as module_patterns | ||
| from .intake import urlpatterns as intake_patterns | ||
| from .label import urlpatterns as label_patterns | ||
| from .member import urlpatterns as member_patterns | ||
| from .asset import urlpatterns as asset_patterns | ||
| from .module import urlpatterns as module_patterns | ||
| from .project import urlpatterns as project_patterns | ||
| from .state import urlpatterns as state_patterns | ||
| from .user import urlpatterns as user_patterns | ||
| from .work_item import urlpatterns as work_item_patterns | ||
|
|
||
| urlpatterns = [ | ||
| *asset_patterns, | ||
| *project_patterns, | ||
| *state_patterns, | ||
| *issue_patterns, | ||
| *cycle_patterns, | ||
| *module_patterns, | ||
| *intake_patterns, | ||
| *label_patterns, | ||
| *member_patterns, | ||
| *module_patterns, | ||
| *project_patterns, | ||
| *state_patterns, | ||
| *user_patterns, | ||
| *work_item_patterns, | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| from django.urls import path | ||
|
|
||
| from plane.api.views import LabelListCreateAPIEndpoint, LabelDetailAPIEndpoint | ||
|
|
||
|
|
||
| urlpatterns = [ | ||
| path( | ||
| "workspaces/<str:slug>/projects/<uuid:project_id>/labels/", | ||
| LabelListCreateAPIEndpoint.as_view(http_method_names=["get", "post"]), | ||
| name="label", | ||
| ), | ||
| path( | ||
| "workspaces/<str:slug>/projects/<uuid:project_id>/labels/<uuid:pk>/", | ||
| LabelDetailAPIEndpoint.as_view(http_method_names=["get", "patch", "delete"]), | ||
| name="label", | ||
| ), | ||
| ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.