fix: use full users for preauthkey lookup

This commit is contained in:
Aarnav Tale
2025-05-16 11:10:39 -04:00
parent ffce20e88a
commit 753a403aed
2 changed files with 5 additions and 3 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
import type { User } from './User';
export interface PreAuthKey {
id: string;
key: string;
user: string;
user: User;
reusable: boolean;
ephemeral: boolean;
used: boolean;