diff options
author | Jessica Tallon <xray7224@googlemail.com> | 2013-07-29 21:53:08 +0100 |
---|---|---|
committer | Jessica Tallon <jessica@megworld.co.uk> | 2014-07-22 23:13:13 +0100 |
commit | d7b3805f2dde435e211560ba6500cc30780739eb (patch) | |
tree | 058a7a256eb695caec23b939c51f68ea8e83f5b4 /mediagoblin/decorators.py | |
parent | 637b966ac20e448d17b310ccbf29389410d7cdf2 (diff) | |
download | mediagoblin-d7b3805f2dde435e211560ba6500cc30780739eb.tar.lz mediagoblin-d7b3805f2dde435e211560ba6500cc30780739eb.tar.xz mediagoblin-d7b3805f2dde435e211560ba6500cc30780739eb.zip |
Starts the user (profile) endpoint and lays groundwork for inbox and feed endpoint
Diffstat (limited to 'mediagoblin/decorators.py')
-rw-r--r-- | mediagoblin/decorators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py index 8515d091..040a11fa 100644 --- a/mediagoblin/decorators.py +++ b/mediagoblin/decorators.py @@ -401,7 +401,7 @@ def oauth_required(controller): request_validator = GMGRequestValidator() resource_endpoint = ResourceEndpoint(request_validator) - valid, request = resource_endpoint.validate_protected_resource_request( + valid, r = resource_endpoint.validate_protected_resource_request( uri=request.url, http_method=request.method, body=request.get_data(), |