exported all the valid profiles

This commit is contained in:
2022-03-16 22:17:11 +01:00
parent a1b7cb239b
commit 717110ce75
8 changed files with 64 additions and 5 deletions
+4 -1
View File
@@ -39,7 +39,10 @@ class DataManager:
return sim_info_collection
def get_all_successful_items(self):
doc_ref = self._db.collection(str(datetime.date.today()))
return self.get_all_successful_items_for_day(str(datetime.date.today()))
def get_all_successful_items_for_day(self, day):
doc_ref = self._db.collection(day)
return doc_ref
def save_sim_info(self, simInfoPojo: SimInfoPojo):