From 5986798c0b8ef70801894b6998069282015afb6d Mon Sep 17 00:00:00 2001 From: CRBroughton Date: Tue, 21 Nov 2023 21:02:30 +0000 Subject: [PATCH 01/14] feat(notifications): :sparkles: create basic notification system for monthly foragables --- .vscode/settings.json | 3 +- src/App.vue | 13 +++++ src/notifications.ts | 73 +++++++++++++++++++++++++++++ src/views/settings/settingsMenu.vue | 6 +++ 4 files changed, 94 insertions(+), 1 deletion(-) create mode 100644 src/notifications.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index 67f4299..95d64e6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -23,6 +23,7 @@ "marker-details", "login-page", "stores", - "error-handling" + "error-handling", + "notifications" ] } \ No newline at end of file diff --git a/src/App.vue b/src/App.vue index 6a52dcc..c0dc1d5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,11 +1,13 @@