"""passbook oauth_client urls""" from django.urls import path from passbook.sources.oauth.types.manager import RequestKind from passbook.sources.oauth.views import core, dispatcher, user 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", ), path( "user//", user.UserSettingsView.as_view(), name="oauth-client-user", ), ]