Skip to content

Instantly share code, notes, and snippets.

@hw0k
Last active June 28, 2020 09:03
Show Gist options
  • Save hw0k/b2051c31adaa5424518e90caaf53d456 to your computer and use it in GitHub Desktop.
Save hw0k/b2051c31adaa5424518e90caaf53d456 to your computer and use it in GitHub Desktop.
FND 3
async function sendNotifications() {
const preferences = await UserPreferencesRepository.findAll();
preferences.forEach(preference => {
if (preference.hasAllowedNotification) {
NotificationModule.send(preference);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment