Remove ServiceLogin and updated User

This commit is contained in:
2010-06-07 13:50:39 +01:00
parent 482c05ca1c
commit e3fea13425
2 changed files with 3 additions and 38 deletions

View File

@@ -8,11 +8,9 @@ oauth = { 'authentication': OAuthAuthentication() }
noauth = { 'authentication': NoAuthentication() }
user_resource = Resource(handler=UserHandler, **noauth)
servicelogin_resource = Resource(handler=ServiceLoginHandler, **noauth)
urlpatterns = patterns('',
url(r'^user/$', user_resource),
url(r'^servicelogin/$', servicelogin_resource),
)
urlpatterns += patterns('piston.authentication',