mirror of
https://github.com/langgenius/dify.git
synced 2026-03-13 02:57:41 +08:00
add workflow logics
This commit is contained in:
16
api/fields/workflow_fields.py
Normal file
16
api/fields/workflow_fields.py
Normal file
@ -0,0 +1,16 @@
|
||||
import json
|
||||
|
||||
from flask_restful import fields
|
||||
|
||||
from fields.member_fields import simple_account_fields
|
||||
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),
|
||||
'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),
|
||||
'updated_at': TimestampField
|
||||
}
|
||||
Reference in New Issue
Block a user