* feat: added external id and external source for issue attachments * feat: added endpoint for creating users * feat: added issue attachment endpoint * fix: converted user to workspace member * chore: removed code blocking adding issues when the cycle has been completed * chore: update models * chore: added user recent visited table --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
13 lines
240 B
Python
13 lines
240 B
Python
from django.urls import path
|
|
|
|
from plane.api.views import (
|
|
WorkspaceMemberAPIEndpoint,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"workspaces/<str:slug>/members/",
|
|
WorkspaceMemberAPIEndpoint.as_view(),
|
|
name="users",
|
|
),
|
|
]
|