@nocobase/plugin-verification
Version:
User identity verification management, including SMS, TOTP authenticator, with extensibility.
20 lines (19 loc) • 778 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';
/**
* Drawer content for the User Center's "Verification" entry. Lists
* every verifier the current user can bind/unbind, with a Configured /
* Not configured tag and a per-row action. Bind opens a type-specific
* sub-drawer; Unbind opens a Tabs-based confirmation drawer that
* authenticates the user with any other bound verifier before removing
* the target.
*/
export declare function MyVerifiers(): React.JSX.Element;
export default MyVerifiers;