From 2490c1158dc5f347aae22de1fb11e3c89b04ab32 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Fri, 27 Aug 2010 22:54:25 +0100 Subject: [PATCH] Switch /api/user to api key auth --- api/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/urls.py b/api/urls.py index d60a194..14cf4f2 100755 --- a/api/urls.py +++ b/api/urls.py @@ -9,7 +9,7 @@ oauth = { 'authentication': OAuthAuthentication() } noauth = { 'authentication': NoAuthentication() } apikeyauth = { 'authentication': APIKeyAuthentication() } -user_resource = Resource(handler=UserHandler, **oauth) +user_resource = Resource(handler=UserHandler, **apikeyauth) login_resource = Resource(handler=LoginHandler, **noauth) eveapi_resource = Resource(handler=EveAPIHandler, **apikeyauth) eveapiproxy_resource = Resource(handler=EveAPIProxyHandler, **apikeyauth)