(self, attrs)
| 29 | read_only_fields = ["workspace", "project"] |
| 30 | |
| 31 | def validate(self, attrs): |
| 32 | if attrs.get("group") == StateGroup.TRIAGE.value: |
| 33 | raise serializers.ValidationError("Cannot create triage state") |
| 34 | return attrs |
| 35 | |
| 36 | |
| 37 | class StateLiteSerializer(BaseSerializer): |