summaryrefslogtreecommitdiff
path: root/backend/src/types/user.ts
diff options
context:
space:
mode:
authorArne Rief <riearn@proton.me>2025-12-20 14:09:20 +0100
committerArne Rief <riearn@proton.me>2025-12-20 14:09:20 +0100
commit237f8ae6c29bbf485c312b2fed4d5ab4f99a4eff (patch)
tree238e82a6dc22372c2f9bb8504ab9160be49bd4f3 /backend/src/types/user.ts
parent655ec610fcce8dd7748f10772d520bdff4f7c78e (diff)
Map and loading robots
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;
};