* chore: return order based on group * chore: order for workspace stats endpoint * chore: state response updated * chore: state icon types updated * chore: state icon updated * chore: state settings new icon implementation * chore: icon implementation * chore: code refactor * chore: code refactor * chore: code refactor * fix: order field type --------- Co-authored-by: sangeethailango <sangeethailango21@gmail.com>
32 lines
732 B
Python
32 lines
732 B
Python
# Module imports
|
|
from .base import BaseSerializer
|
|
from rest_framework import serializers
|
|
|
|
from plane.db.models import State
|
|
|
|
|
|
class StateSerializer(BaseSerializer):
|
|
order = serializers.FloatField(required=False)
|
|
|
|
class Meta:
|
|
model = State
|
|
fields = [
|
|
"id",
|
|
"project_id",
|
|
"workspace_id",
|
|
"name",
|
|
"color",
|
|
"group",
|
|
"default",
|
|
"description",
|
|
"sequence",
|
|
"order",
|
|
]
|
|
read_only_fields = ["workspace", "project"]
|
|
|
|
|
|
class StateLiteSerializer(BaseSerializer):
|
|
class Meta:
|
|
model = State
|
|
fields = ["id", "name", "color", "group"]
|
|
read_only_fields = fields
|