So, I'm creating an Android App to create and organize events for a school project.
I'm using Firebase and my Event skeleton looks like this
I want to delete events that have already happened, in this case, I would want the event above to be deleted at April 15th.
I know I can delete them on the app itself, or I can just filter them out so people don't see them when they run the app, but is there a way to do it on the firebase console?
Like, making a task that runs at 12 PM every day and checks for the system date, compares to the date of each event and deletes those which have already happened.
Thanks in advance.