mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-19 18:29:23 +00:00
Add authentication and registration to seahub
This commit is contained in:
15
thirdpart/registration/urls.py
Normal file
15
thirdpart/registration/urls.py
Normal file
@@ -0,0 +1,15 @@
|
||||
"""
|
||||
Backwards-compatible URLconf for existing django-registration
|
||||
installs; this allows the standard ``include('registration.urls')`` to
|
||||
continue working, but that usage is deprecated and will be removed for
|
||||
django-registration 1.0. For new installs, use
|
||||
``include('registration.backends.default.urls')``.
|
||||
|
||||
"""
|
||||
|
||||
import warnings
|
||||
|
||||
warnings.warn("include('registration.urls') is deprecated; use include('registration.backends.default.urls') instead.",
|
||||
PendingDeprecationWarning)
|
||||
|
||||
from registration.backends.default.urls import *
|
Reference in New Issue
Block a user