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

15 lines
299 B
TypeScript

import { FSDB_COLLECTION } from '@andyburke/fsdb';
export type PASSWORD_ENTRY = {
user_id: string;
hash: string;
timestamps: {
created: string;
updated: string;
};
};
export const PASSWORD_ENTRIES = new FSDB_COLLECTION<PASSWORD_ENTRY>({
name: 'password_entries',
id_field: 'user_id'
});