You've already forked hotpocket
This commit is contained in:
0
services/backend/hotpocket_backend/urls/__init__.py
Normal file
0
services/backend/hotpocket_backend/urls/__init__.py
Normal file
10
services/backend/hotpocket_backend/urls/admin.py
Normal file
10
services/backend/hotpocket_backend/urls/admin.py
Normal file
@@ -0,0 +1,10 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import annotations
|
||||
|
||||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('social_django.urls', namespace='sso')),
|
||||
path('', admin.site.urls),
|
||||
]
|
||||
17
services/backend/hotpocket_backend/urls/aio.py
Normal file
17
services/backend/hotpocket_backend/urls/aio.py
Normal file
@@ -0,0 +1,17 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import annotations
|
||||
|
||||
from django.contrib import admin
|
||||
from django.urls import include, path
|
||||
|
||||
handler404 = 'hotpocket_backend.apps.ui.views.errors.page_not_found'
|
||||
handler500 = 'hotpocket_backend.apps.ui.views.errors.server_error'
|
||||
handler400 = 'hotpocket_backend.apps.ui.views.errors.bad_request'
|
||||
handler403 = 'hotpocket_backend.apps.ui.views.errors.permission_denied'
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('social_django.urls', namespace='sso')),
|
||||
path('admin/', admin.site.urls),
|
||||
path('', include('hotpocket_backend.apps.ui.urls')),
|
||||
]
|
||||
8
services/backend/hotpocket_backend/urls/testing.py
Normal file
8
services/backend/hotpocket_backend/urls/testing.py
Normal file
@@ -0,0 +1,8 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import annotations
|
||||
|
||||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('hotpocket_backend.apps.ui.urls')),
|
||||
]
|
||||
15
services/backend/hotpocket_backend/urls/webapp.py
Normal file
15
services/backend/hotpocket_backend/urls/webapp.py
Normal file
@@ -0,0 +1,15 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import annotations
|
||||
|
||||
from django.urls import include, path
|
||||
|
||||
handler404 = 'hotpocket_backend.apps.ui.views.errors.page_not_found'
|
||||
handler500 = 'hotpocket_backend.apps.ui.views.errors.server_error'
|
||||
handler400 = 'hotpocket_backend.apps.ui.views.errors.bad_request'
|
||||
handler403 = 'hotpocket_backend.apps.ui.views.errors.permission_denied'
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('social_django.urls', namespace='sso')),
|
||||
path('', include('hotpocket_backend.apps.ui.urls')),
|
||||
]
|
||||
Reference in New Issue
Block a user