You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
user.service.ts#isReadyForDeletion uses Date millisecond parsing, but should use luxon, for a much cleaner implementation.
// TODO use luxon for date calculationconstmsInDay=86_400_000;constmsDeleteWait=msInDay*7;constmsSinceDelete=Date.now()-(Date.parse(user.deletedAt.toString())||0);returnmsSinceDelete>=msDeleteWait;
The text was updated successfully, but these errors were encountered:
user.service.ts#isReadyForDeletion
uses Date millisecond parsing, but should use luxon, for a much cleaner implementation.The text was updated successfully, but these errors were encountered: