From 2b6e6ea0256325dc6a1097b9f0cfb2928feb12aa Mon Sep 17 00:00:00 2001 From: Thesourtimes Date: Sat, 1 Jan 2022 20:04:30 +0300 Subject: Organize @fosscord/api utils in directories --- api/src/util/Instance.ts | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 api/src/util/Instance.ts (limited to 'api/src/util/Instance.ts') diff --git a/api/src/util/Instance.ts b/api/src/util/Instance.ts deleted file mode 100644 index 6bddfa98..00000000 --- a/api/src/util/Instance.ts +++ /dev/null @@ -1,21 +0,0 @@ -import { Config, Guild, Session } from "@fosscord/util"; - -export async function initInstance() { - // TODO: clean up database and delete tombstone data - // TODO: set first user as instance administrator/or generate one if none exists and output it in the terminal - - // create default guild and add it to auto join - // TODO: check if any current user is not part of autoJoinGuilds - const { autoJoin } = Config.get().guild; - - if (autoJoin.enabled && !autoJoin.guilds?.length) { - let guild = await Guild.findOne({}); - if (guild) { - // @ts-ignore - await Config.set({ guild: { autoJoin: { guilds: [guild.id] } } }); - } - } - - // TODO: do no clear sessions for instance cluster - await Session.delete({}); -} -- cgit 1.5.1