From 1d575524c3862447eed628ffcc49c666b84254fe Mon Sep 17 00:00:00 2001 From: Yeuoly Date: Thu, 26 Sep 2024 14:20:05 +0800 Subject: [PATCH] fix: missing user id --- api/core/plugin/manager/endpoint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api/core/plugin/manager/endpoint.py b/api/core/plugin/manager/endpoint.py index 1c48f8200f..c4718b72dd 100644 --- a/api/core/plugin/manager/endpoint.py +++ b/api/core/plugin/manager/endpoint.py @@ -59,6 +59,7 @@ class PluginEndpointManager(BasePluginManager): f"plugin/{tenant_id}/endpoint/update", dict, data={ + "user_id": user_id, "endpoint_id": endpoint_id, "settings": settings, },