mirror of
https://github.com/langgenius/dify.git
synced 2026-02-28 12:25:14 +00:00
move workflow_id to app
This commit is contained in:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user