feat: initial channel settings implementation

This commit is contained in:
2025-06-21 01:38:46 +02:00
parent 338254889a
commit 818566b1c5
14 changed files with 1207 additions and 30 deletions

View File

@@ -10,7 +10,8 @@
},
"type": "module",
"scripts": {
"build": "tsc --build"
"build": "tsc --build",
"dev": "tsc --watch --preserveWatchOutput"
},
"dependencies": {
"@hctv/db": "*",

View File

@@ -21,6 +21,7 @@ export const lucia = new Lucia(adapter, {
slack_id: attributes.slack_id,
pfpUrl: attributes.pfpUrl,
hasOnboarded: attributes.hasOnboarded,
personalChannelId: attributes.personalChannelId,
};
},
});
@@ -36,4 +37,5 @@ interface DatabaseUserAttributes {
slack_id: string;
pfpUrl: string;
hasOnboarded: boolean;
personalChannelId: string | null;
}