* 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>
31 lines
676 B
Python
31 lines
676 B
Python
from .project import ProjectAPIEndpoint, ProjectArchiveUnarchiveAPIEndpoint
|
|
|
|
from .state import StateAPIEndpoint
|
|
|
|
from .issue import (
|
|
WorkspaceIssueAPIEndpoint,
|
|
IssueAPIEndpoint,
|
|
LabelAPIEndpoint,
|
|
IssueLinkAPIEndpoint,
|
|
IssueCommentAPIEndpoint,
|
|
IssueActivityAPIEndpoint,
|
|
IssueAttachmentEndpoint,
|
|
)
|
|
|
|
from .cycle import (
|
|
CycleAPIEndpoint,
|
|
CycleIssueAPIEndpoint,
|
|
TransferCycleIssueAPIEndpoint,
|
|
CycleArchiveUnarchiveAPIEndpoint,
|
|
)
|
|
|
|
from .module import (
|
|
ModuleAPIEndpoint,
|
|
ModuleIssueAPIEndpoint,
|
|
ModuleArchiveUnarchiveAPIEndpoint,
|
|
)
|
|
|
|
from .member import ProjectMemberAPIEndpoint
|
|
|
|
from .inbox import InboxIssueAPIEndpoint
|
|
|