* chore: paginated the issues in space app * chore: storing query using filters * chore: added filters for priority * chore: issue view model save function * chore: votes and reactions added in issues endpoint * chore: added filters in the public endpoint * chore: issue detail endpoint * chore: added labels, modules and assignees * refactor existing project publish in space app * fix clear all filters in space App * chore: removed the extra serialier * remove optional chaining and fallback to an empty array --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com>
9 lines
195 B
Python
9 lines
195 B
Python
from .user import UserLiteSerializer
|
|
|
|
from .issue import (
|
|
LabelLiteSerializer,
|
|
StateLiteSerializer,
|
|
IssuePublicSerializer,
|
|
)
|
|
|
|
from .state import StateSerializer, StateLiteSerializer
|