From 76df1e76769fe41e0b7f76233317dec40353f5a1 Mon Sep 17 00:00:00 2001 From: dragonwocky Date: Sun, 31 Oct 2021 18:25:01 +1100 Subject: [PATCH] removed welcome notification from registry --- api/registry.mjs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/api/registry.mjs b/api/registry.mjs index 89e0bd9..6fa99a1 100644 --- a/api/registry.mjs +++ b/api/registry.mjs @@ -51,19 +51,6 @@ export const profileName = async () => storage.get(['currentprofile'], 'default' */ export const profileDB = async () => storage.db(['profiles', await profileName()]); -/** a notification displayed when the menu is opened for the first time */ -export const welcomeNotification = { - id: '84e2d49b-c3dc-44b4-a154-cf589676bfa0', - color: 'purple', - icon: 'message-circle', - message: 'Welcome! Come chat with us on Discord.', - link: 'https://discord.gg/sFWPXtA', - version: env.version, -}; - -/** the url of a json file online containing notifications pushed out to users */ -export const notificationsURL = 'https://notion-enhancer.github.io/notifications.json'; - let _list, _errors = []; /**