Change /api/user to a noauth for the moment

This commit is contained in:
2010-06-07 13:41:10 +01:00
parent b5e88dc9d9
commit b4dcdd56b8
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ from api.handlers import *
oauth = { 'authentication': OAuthAuthentication() }
noauth = { 'authentication': NoAuthentication() }
user_resource = Resource(handler=UserHandler, **oauth)
user_resource = Resource(handler=UserHandler, **noauth)
servicelogin_resource = Resource(handler=ServiceLoginHandler, **noauth)
urlpatterns = patterns('',