ugurdonmez / kinder-mobile

1 stars 0 forks source link

parents should enter birthdays of students when registering #54

Closed borakrc closed 7 years ago

borakrc commented 7 years ago

calendar is supposed to show birthdates of students too, so we need that for the calendar.

borakrc commented 7 years ago

the date format that we take the birthday from user should be the same as the format that the calendar will request the events of a day. we store them as strings in the db, so they should match.

borakrc commented 7 years ago

new Date(year, month, day).toISOString().substring(0, 10) seems like our best option again. please note month=0 is Jan. and month=11 is December.