hotpocket/services/backend/hotpocket_backend/urls/webapp.py
Tomek Wójcik b4338e2769
Some checks failed
CI / Checks (push) Failing after 13m2s
Release v1.0.0
2025-08-20 21:00:50 +02:00

16 lines
512 B
Python

# -*- 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')),
]