move workflow_id to app

This commit is contained in:
takatost
2024-02-29 22:03:03 +08:00
parent 2bbf96d762
commit 11e1b569ea
11 changed files with 170 additions and 303 deletions

View File

@@ -1,5 +1,3 @@
import json
from flask_restful import fields
from fields.member_fields import simple_account_fields
@@ -7,7 +5,8 @@ from libs.helper import TimestampField
workflow_fields = {
'id': fields.String,
'graph': fields.Raw(attribute=lambda x: json.loads(x.graph) if hasattr(x, 'graph') else None),
'graph': fields.Nested(simple_account_fields, attribute='graph_dict'),
'features': fields.Nested(simple_account_fields, attribute='features_dict'),
'created_by': fields.Nested(simple_account_fields, attribute='created_by_account'),
'created_at': TimestampField,
'updated_by': fields.Nested(simple_account_fields, attribute='updated_by_account', allow_null=True),