summaryrefslogtreecommitdiff
path: root/backend/src/types/user.ts
diff options
context:
space:
mode:
Diffstat (limited to 'backend/src/types/user.ts')
-rw-r--r--backend/src/types/user.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/src/types/user.ts b/backend/src/types/user.ts
index 875072c..b2c7ffc 100644
--- a/backend/src/types/user.ts
+++ b/backend/src/types/user.ts
@@ -1,18 +1,18 @@
export type AdminCreationResult = {
id: string;
email: string;
- created_at: Date;
+ created_at: string;
};
export type AuthorizedUser = {
id: string;
email: string;
- createdAt: Date;
+ createdAt: string;
};
export type DatabaseUser = {
id: string;
email: string;
password_hash: string;
- created_at: Date;
+ created_at: string;
};