From e7db94a986f411e1a86b9a6cc2af21a7e74e1fcf Mon Sep 17 00:00:00 2001 From: Duda Dornelles Date: Tue, 12 Aug 2014 13:30:24 -0300 Subject: adding mails query, tags and contacts to py-fake-service --- py-fake-service/app/adapter/tag.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 py-fake-service/app/adapter/tag.py (limited to 'py-fake-service/app/adapter/tag.py') diff --git a/py-fake-service/app/adapter/tag.py b/py-fake-service/app/adapter/tag.py new file mode 100644 index 00000000..bc98669d --- /dev/null +++ b/py-fake-service/app/adapter/tag.py @@ -0,0 +1,17 @@ +class Tag: + DEFAULT_TAGS = ["inbox", "sent", "trash", "drafts"] + + def __init__(self, name, ident): + self.counts = { + 'total': 1, + 'read': 0, + 'starred': 0, + 'reply': 0 + } + + self.ident = ident + self.name = name + self.default = name in self.DEFAULT_TAGS + + def increment_count(self): + self.counts['total'] += 1 -- cgit v1.2.3