autonomous.contact/models/totp_entry.ts
2025-07-24 12:09:24 -07:00

15 lines
285 B
TypeScript

import { FSDB_COLLECTION } from '@andyburke/fsdb';
export type TOTP_ENTRY = {
user_id: string;
secret: string;
timestamps: {
created: string;
updated: string;
};
};
export const TOTP_ENTRIES = new FSDB_COLLECTION<TOTP_ENTRY>({
name: 'totp_entries',
id_field: 'user_id'
});