cookies directly from tag.js not work

This commit is contained in:
2024-01-15 11:21:53 +01:00
parent f43d496ecc
commit d1ffd28b6a
9 changed files with 430 additions and 101 deletions
+13
View File
@@ -0,0 +1,13 @@
class LinkPojo():
def __init__(self, url, email, updated_at):
self.url = url
self.email = email
self.updated_at = updated_at
@staticmethod
def from_firestore_dict(source):
updated_at = source['updated_at']
email = source['email']
url = source['url']
result = LinkPojo(email=email, url=url, updated_at=updated_at)
return result