9 lines
245 B
Python
9 lines
245 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from allauth.socialaccount.providers.lemonldap.provider import (
|
||
|
LemonLDAPProvider,
|
||
|
)
|
||
|
from allauth.socialaccount.providers.oauth2.urls import default_urlpatterns
|
||
|
|
||
|
|
||
|
urlpatterns = default_urlpatterns(LemonLDAPProvider)
|