mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-12 12:25:20 +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 key = '';
|
||||||
let headers = '';
|
let headers = '';
|
||||||
|
|
||||||
let functionNameFilterList = [];
|
let functionNameFilterList = '';
|
||||||
let accessControl = {};
|
let accessControl = {};
|
||||||
|
|
||||||
let id = '';
|
let id = '';
|
||||||
|
|
@ -338,7 +338,7 @@
|
||||||
oauthClientInfo = null;
|
oauthClientInfo = null;
|
||||||
|
|
||||||
enable = true;
|
enable = true;
|
||||||
functionNameFilterList = [];
|
functionNameFilterList = '';
|
||||||
accessControl = null;
|
accessControl = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
@ -362,7 +362,7 @@
|
||||||
oauthClientInfo = connection.info?.oauth_client_info ?? null;
|
oauthClientInfo = connection.info?.oauth_client_info ?? null;
|
||||||
|
|
||||||
enable = connection.config?.enable ?? true;
|
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;
|
accessControl = connection.config?.access_control ?? null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue