@nocobase/plugin-verification
Version:
User identity verification management, including SMS, TOTP authenticator, with extensibility.
22 lines (21 loc) • 883 B
TypeScript
/**
* This file is part of the NocoBase (R) project.
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
* Authors: NocoBase Team.
*
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
* For more information, please refer to: https://www.nocobase.com/agreement.
*/
import React from 'react';
/**
* Admin settings form for an SMS-OTP verifier:
* 1. `options.provider` selects which configured SMS provider (Aliyun /
* Tencent / …) sends the OTP. The list is the server resource
* `smsOTPProviders:list`.
* 2. `options.settings.*` is the provider-specific configuration form,
* looked up from the plugin's `smsOTPProviderManager` at runtime so
* third-party providers contributed via `registerProvider()` slot in
* automatically.
*/
export declare function AdminSettingsForm(): React.JSX.Element;
export default AdminSettingsForm;