This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/modelSchema/totp-zod.ts

8 lines
145 B
TypeScript

import { object, string, boolean } from 'zod'
export const iTotpSchema = object({
secret: string(),
enabled: boolean(),
url: string(),
})