Javascript – How to build a nestjs reminder function
In nestjs i have a POST api to add a Date object which is the date and time to send a notification to mobile app. So i need to check for all users, which all reminders are reached so that…
In nestjs i have a POST api to add a Date object which is the date and time to send a notification to mobile app. So i need to check for all users, which all reminders are reached so that…
I currently have an array of weekdays and wish to set them as reminders weekly - here is the code so far. for i in selectedWeekDay { let dateInfo = Calendar.current.dateComponents([.hour, .minute, .weekday], from: timeSet as! Date) dateInfo.hour dateInfo.minute dateInfo.weekday…