mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 20:35:19 +00:00
refac/fix: function name filter type
This commit is contained in:
parent
c7eb713689
commit
c5b73d7184
1 changed files with 3 additions and 3 deletions
|
|
@ -47,7 +47,7 @@
|
|||
let key = '';
|
||||
let headers = '';
|
||||
|
||||
let functionNameFilterList = [];
|
||||
let functionNameFilterList = '';
|
||||
let accessControl = {};
|
||||
|
||||
let id = '';
|
||||
|
|
@ -338,7 +338,7 @@
|
|||
oauthClientInfo = null;
|
||||
|
||||
enable = true;
|
||||
functionNameFilterList = [];
|
||||
functionNameFilterList = '';
|
||||
accessControl = null;
|
||||
};
|
||||
|
||||
|
|
@ -362,7 +362,7 @@
|
|||
oauthClientInfo = connection.info?.oauth_client_info ?? null;
|
||||
|
||||
enable = connection.config?.enable ?? true;
|
||||
functionNameFilterList = connection.config?.function_name_filter_list ?? [];
|
||||
functionNameFilterList = connection.config?.function_name_filter_list ?? '';
|
||||
accessControl = connection.config?.access_control ?? null;
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue