cookies directly from tag.js not work
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user