mirror of
https://github.com/SrIzan10/hctv.git
synced 2026-06-06 00:56:56 +00:00
feat: initial channel settings implementation
This commit is contained in:
@@ -10,7 +10,8 @@
|
||||
},
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"build": "tsc --build"
|
||||
"build": "tsc --build",
|
||||
"dev": "tsc --watch --preserveWatchOutput"
|
||||
},
|
||||
"dependencies": {
|
||||
"@hctv/db": "*",
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user