From 0e60b30d232c9721e5f34e2426f5d662e08e72e2 Mon Sep 17 00:00:00 2001 From: Yansong Zhang <916125788@qq.com> Date: Tue, 14 Oct 2025 11:35:59 +0800 Subject: [PATCH] add interface for review app --- api/controllers/console/explore/trial.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/controllers/console/explore/trial.py b/api/controllers/console/explore/trial.py index aa372619fb..592b770664 100644 --- a/api/controllers/console/explore/trial.py +++ b/api/controllers/console/explore/trial.py @@ -469,6 +469,8 @@ class AppWorkflowApi(Resource): class DatasetListApi(Resource): + @trial_feature_enable + @get_app_model_with_trial def get(self, app_model): page = request.args.get("page", default=1, type=int) limit = request.args.get("limit", default=20, type=int)