"""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, settings from passbook.oauth_client.views import 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.disconnect, # name='oauth-client-disconnect'), ]