A simple to-do app focused on tasks that can be completed within a specific time span.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lints

+2 -4
-2
app/components/Settings/SettingsSheet.vue
··· 46 46 body: sub.toJSON(), 47 47 ...useFetchOptions(), 48 48 }).catch(async (err) => { 49 - //todo - show in toast 50 49 console.warn(err); 51 - // await this.fetch(); 52 50 }); 53 51 } 54 52 </script>
+2 -2
server/utils/db/subscription.ts
··· 8 8 9 9 webpush.setVapidDetails( 10 10 "mailto:you@example.com", 11 - process.env.NUXT_PUBLIC_SUBSCRIPTIONS_PUBLIC_KEY, 12 - process.env.SUBSCRIPTIONS_PRIVATE_KEY, 11 + process.env.NUXT_PUBLIC_SUBSCRIPTIONS_PUBLIC_KEY!, 12 + process.env.SUBSCRIPTIONS_PRIVATE_KEY!, 13 13 ); 14 14 15 15 export const Subscriptions = {