build: merge frontend and backend into a single repo
This commit is contained in:
parent
10ce333e6f
commit
26ec1e8c15
126 changed files with 8280 additions and 1 deletions
14
apiserver/plane/api/serializers/state.py
Normal file
14
apiserver/plane/api/serializers/state.py
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Module imports
|
||||
from .base import BaseSerializer
|
||||
|
||||
from plane.db.models import State
|
||||
|
||||
|
||||
class StateSerializer(BaseSerializer):
|
||||
class Meta:
|
||||
model = State
|
||||
fields = "__all__"
|
||||
read_only_fields = [
|
||||
"workspace",
|
||||
"project",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue