summaryrefslogtreecommitdiff
path: root/service/pixelated/resources/user_settings_resource.py
diff options
context:
space:
mode:
authorGislene Pereira <gislene01@gmail.com>2015-12-01 12:29:33 -0200
committerPixelated <pixelated@pix-poa-1>2015-12-03 21:16:58 -0200
commit10d378faf09ec71147994ba0c47033f1745272b3 (patch)
treeb3bc0e7a1b9b339a4e88951b7586faffaa949669 /service/pixelated/resources/user_settings_resource.py
parent1e0032ceaeb50e0c557f57dd7e1cfb34397b28e3 (diff)
Issue #411 - Display user email in user settings popup [w/ @jeffhsta]
Diffstat (limited to 'service/pixelated/resources/user_settings_resource.py')
-rw-r--r--service/pixelated/resources/user_settings_resource.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/service/pixelated/resources/user_settings_resource.py b/service/pixelated/resources/user_settings_resource.py
new file mode 100644
index 00000000..034dca15
--- /dev/null
+++ b/service/pixelated/resources/user_settings_resource.py
@@ -0,0 +1,30 @@
+#
+# Copyright (c) 2015 ThoughtWorks, Inc.
+#
+# Pixelated is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# Pixelated is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
+import json
+
+from twisted.web.resource import Resource
+from pixelated.resources import respond_json
+
+
+class UserSettingsResource(Resource):
+ isLeaf = True
+
+ def __init__(self, account_email):
+ Resource.__init__(self)
+ self.account_email = account_email
+
+ def render_GET(self, request):
+ return respond_json({'account_email': self.account_email}, request)