From 10d378faf09ec71147994ba0c47033f1745272b3 Mon Sep 17 00:00:00 2001 From: Gislene Pereira Date: Tue, 1 Dec 2015 12:29:33 -0200 Subject: Issue #411 - Display user email in user settings popup [w/ @jeffhsta] --- .../pixelated/resources/user_settings_resource.py | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 service/pixelated/resources/user_settings_resource.py (limited to 'service/pixelated/resources/user_settings_resource.py') 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 . +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) -- cgit v1.2.3