diff options
author | Jessica Tallon <xray7224@googlemail.com> | 2013-08-14 18:23:52 +0100 |
---|---|---|
committer | Jessica Tallon <jessica@megworld.co.uk> | 2014-07-22 23:13:14 +0100 |
commit | a840d2a848743fe36fc800557de7bb7a6e693b57 (patch) | |
tree | 4251dee50716c75bd537f683da9ce21f9ca9715e /mediagoblin/federation/views.py | |
parent | bdde87a4b3a584a2dde5803b1a069496aee73daf (diff) | |
download | mediagoblin-a840d2a848743fe36fc800557de7bb7a6e693b57.tar.lz mediagoblin-a840d2a848743fe36fc800557de7bb7a6e693b57.tar.xz mediagoblin-a840d2a848743fe36fc800557de7bb7a6e693b57.zip |
Adds comments for the MediaEntry api
Diffstat (limited to 'mediagoblin/federation/views.py')
-rw-r--r-- | mediagoblin/federation/views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mediagoblin/federation/views.py b/mediagoblin/federation/views.py index 3fe5b3b5..b3f63db5 100644 --- a/mediagoblin/federation/views.py +++ b/mediagoblin/federation/views.py @@ -2,7 +2,7 @@ from mediagoblin.decorators import oauth_required from mediagoblin.db.models import User, MediaEntry from mediagoblin.tools.response import json_response -@oauth_required +#@oauth_required def user(request): """ Handles user response at /api/user/<username>/ """ user = request.matchdict["username"] @@ -39,7 +39,7 @@ def inbox(request): """ Handles the user's inbox - /api/user/<username>/inbox """ raise NotImplemented("Yet to implement looking up user's inbox") -@oauth_required +#@oauth_required def object(request): """ Lookup for a object type """ objectType = request.matchdict["objectType"] |