Added the other OAuth endpoints

This commit is contained in:
2011-06-29 11:57:24 +01:00
parent b2dbea0f5f
commit c37c291cf2
2 changed files with 6 additions and 1 deletions

View File

@@ -54,9 +54,14 @@ urlpatterns += patterns('api.views',
)
oauth_optimer_resource = Resource(handler=OAuthOpTimerHandler, **oauth)
oauth_eveapi_resource = Resource(handler=OAuthOpTimerHandler, **oauth)
oauth_chars_resource = Resource(handler=OAuthCharacterHandler, **oauth)
# API
urlpatterns += patterns('',
url(r'^oauth/optimer/$', oauth_optimer_resource),
url(r'^oauth/eveapi/$', oauth_eveapi_resource),
url(r'^oauth/character/$', oauth_chars_resource),
)