mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-11 02:24:45 +08:00
Merge pull request #997 from SsageParuders/refactor/bedrock-channel-merge
refactor: merge bedrock-apikey into unified bedrock channel with auth_mode
This commit is contained in:
@@ -1745,7 +1745,7 @@ const betaPolicyForm = reactive({
|
||||
rules: [] as Array<{
|
||||
beta_token: string
|
||||
action: 'pass' | 'filter' | 'block'
|
||||
scope: 'all' | 'oauth' | 'apikey'
|
||||
scope: 'all' | 'oauth' | 'apikey' | 'bedrock'
|
||||
error_message?: string
|
||||
}>
|
||||
})
|
||||
@@ -2297,7 +2297,8 @@ const betaPolicyActionOptions = computed(() => [
|
||||
const betaPolicyScopeOptions = computed(() => [
|
||||
{ value: 'all', label: t('admin.settings.betaPolicy.scopeAll') },
|
||||
{ value: 'oauth', label: t('admin.settings.betaPolicy.scopeOAuth') },
|
||||
{ value: 'apikey', label: t('admin.settings.betaPolicy.scopeAPIKey') }
|
||||
{ value: 'apikey', label: t('admin.settings.betaPolicy.scopeAPIKey') },
|
||||
{ value: 'bedrock', label: t('admin.settings.betaPolicy.scopeBedrock') }
|
||||
])
|
||||
|
||||
// Beta Policy 方法
|
||||
|
||||
Reference in New Issue
Block a user