summaryrefslogtreecommitdiff
path: root/service/README.md
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2014-08-04 19:06:47 -0300
committerVictor Shyba <victor.shyba@gmail.com>2014-08-04 19:06:47 -0300
commitd4900afecfc02d912a180fc144e6679a808e57d3 (patch)
treede3b45cdae83f953301172882f245908aaaf7555 /service/README.md
parentf64864dc11e025873297c8e251be233031b0f798 (diff)
Bringing back original text
Diffstat (limited to 'service/README.md')
-rw-r--r--service/README.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/service/README.md b/service/README.md
index 1d11526d..3c09f2f6 100644
--- a/service/README.md
+++ b/service/README.md
@@ -1,3 +1,42 @@
+Pixelated User Agent Service
+============================
+
+This is the service for the Pixelated User Agent. The primary purpose of this is to integrate well with the Pixelated Provider and provide all the capabilities necessary for the UI to work well.
+
+The aim is to support these resources/endpoints:
+
+```
+GET /mails
+DELETE /mails
+POST /mails
+PUT /mails
+POST /mails/read
+
+GET /mail/:id
+DELETE /mail/:id
+POST /mail/:id/star
+POST /mail/:id/unstar
+POST /mail/:id/replied
+POST /mail/:id/unreplied
+POST /mail/:id/read
+POST /mail/:id/unread
+GET /mail/:id/tags
+POST /mail/:id/tags
+
+GET /draft_reply_for/:id
+
+GET /contacts
+GET /contact/:id
+
+GET /stats
+
+GET /tags
+POST /tags
+```
+
+The implementation of the User Agent Service will be in Python, in order to better work together with LEAP. Another goal of the User Agent Service will be to run well on all major client platforms. Finally, there will be a lot of support for search and indexing, and also for encryption and signing. However, we want to push most of these features back to LEAP so that Bitmask can leverage them as well.
+
+
Development environment
---