mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 06:03:20 +00:00
Code refactor and comments
This commit is contained in:
parent
820bf6279b
commit
700fed860d
@ -671,7 +671,7 @@ if DEBUG:
|
|||||||
]
|
]
|
||||||
SASS_INCLUDE_FOLDERS = ["core/static/"]
|
SASS_INCLUDE_FOLDERS = ["core/static/"]
|
||||||
SENTRY_ENV = "development"
|
SENTRY_ENV = "development"
|
||||||
|
|
||||||
if "test" in sys.argv:
|
if "test" in sys.argv:
|
||||||
CAPTCHA_TEST_MODE = True
|
CAPTCHA_TEST_MODE = True
|
||||||
|
|
||||||
|
23
sith/urls.py
23
sith/urls.py
@ -52,13 +52,6 @@ handler403 = "core.views.forbidden"
|
|||||||
handler404 = "core.views.not_found"
|
handler404 = "core.views.not_found"
|
||||||
handler500 = "core.views.internal_servor_error"
|
handler500 = "core.views.internal_servor_error"
|
||||||
|
|
||||||
# Sentry Test case
|
|
||||||
if settings.DEBUG:
|
|
||||||
|
|
||||||
def trigger_error(request):
|
|
||||||
division_by_zero = 1 / 0
|
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = [
|
urlpatterns = [
|
||||||
path("", include(("core.urls", "core"), namespace="core")),
|
path("", include(("core.urls", "core"), namespace="core")),
|
||||||
path("rootplace/", include(("rootplace.urls", "rootplace"), namespace="rootplace")),
|
path("rootplace/", include(("rootplace.urls", "rootplace"), namespace="rootplace")),
|
||||||
@ -101,5 +94,19 @@ if settings.DEBUG:
|
|||||||
|
|
||||||
urlpatterns += [path("__debug__/", include(debug_toolbar.urls))]
|
urlpatterns += [path("__debug__/", include(debug_toolbar.urls))]
|
||||||
|
|
||||||
# Sentry test case
|
"""Sentry debug endpoint
|
||||||
|
|
||||||
|
This function always crash and allows us to test
|
||||||
|
the sentry configuration and the modal popup
|
||||||
|
displayed to users on production
|
||||||
|
|
||||||
|
The error will be displayed on Sentry
|
||||||
|
inside the "development" environment
|
||||||
|
|
||||||
|
NOTE : you need to specify the SENTRY_DSN setting in settings_custom.py
|
||||||
|
"""
|
||||||
|
|
||||||
|
def trigger_error(request):
|
||||||
|
division_by_zero = 1 / 0
|
||||||
|
|
||||||
urlpatterns += [path("sentry-debug/", trigger_error)]
|
urlpatterns += [path("sentry-debug/", trigger_error)]
|
||||||
|
Loading…
Reference in New Issue
Block a user