"""passbook oauth_client urls""" from django.urls import path from passbook.oauth_client.source_types.manager import RequestKind from passbook.oauth_client.views import core, dispatcher urlpatterns = [ path('login//', dispatcher.DispatcherView.as_view( kind=RequestKind.redirect), name='oauth-client-login'), path('callback//', dispatcher.DispatcherView.as_view( kind=RequestKind.callback), name='oauth-client-callback'), path('disconnect//', core.DisconnectView.as_view(), name='oauth-client-disconnect'), ]