* feat: removed created by and created_at as readonly fields from issue serializers * feat: modified serializers for accepting created_by, and changed workspacememberendpoint to projectmemberendpoint * fix: code suggestions * chore: resolved code review * chore: removed unused imports * fix: passed default user if created_by is absent, and permission classes * fix: default value for the issue creation * dev: fix nomenclature --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
13 lines
262 B
Python
13 lines
262 B
Python
from django.urls import path
|
|
|
|
from plane.api.views import (
|
|
ProjectMemberAPIEndpoint,
|
|
)
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"workspaces/<str:slug>/projects/<str:project_id>/members/",
|
|
ProjectMemberAPIEndpoint.as_view(),
|
|
name="users",
|
|
),
|
|
]
|