summaryrefslogtreecommitdiffstats
path: root/module/web/api_app.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/api_app.py')
-rw-r--r--module/web/api_app.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/module/web/api_app.py b/module/web/api_app.py
index 52903e92b..690cf73aa 100644
--- a/module/web/api_app.py
+++ b/module/web/api_app.py
@@ -28,6 +28,7 @@ def call_api(func, args=""):
s = request.environ.get('beaker.session')
auth = parse_auth(request.get_header('Authorization', ''))
+ # TODO: session as GET
if 'session' in request.POST:
# removes "' so it works on json strings
s = s.get_by_id(remove_chars(request.POST['session'], "'\""))