Просмотр исходного кода

feat(DraftWorkflowApi): Requires environment_variables in DraftWorkflowApi (#19849)

Signed-off-by: -LAN- <laipz8200@outlook.com>
tags/1.4.1
-LAN- 5 месяцев назад
Родитель
Сommit
e0e8cd6ca3
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 1 добавлений и 2 удалений
  1. 1
    2
      api/controllers/console/app/workflow.py

+ 1
- 2
api/controllers/console/app/workflow.py Просмотреть файл

@@ -81,8 +81,7 @@ class DraftWorkflowApi(Resource):
parser.add_argument("graph", type=dict, required=True, nullable=False, location="json")
parser.add_argument("features", type=dict, required=True, nullable=False, location="json")
parser.add_argument("hash", type=str, required=False, location="json")
# TODO: set this to required=True after frontend is updated
parser.add_argument("environment_variables", type=list, required=False, location="json")
parser.add_argument("environment_variables", type=list, required=True, location="json")
parser.add_argument("conversation_variables", type=list, required=False, location="json")
args = parser.parse_args()
elif "text/plain" in content_type:

Загрузка…
Отмена
Сохранить