Improve UX and filtering

This commit is contained in:
2023-10-17 13:44:30 +02:00
parent 7865bf04f0
commit 97989c3384
7 changed files with 28 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
from ram.utils import git_suffix
__version__ = "0.8.0"
__version__ = "0.9.0"
__version__ += git_suffix(__file__)

View File

@@ -60,3 +60,7 @@ if settings.DEBUG:
name="openapi-schema",
),
]
if apps.is_installed("debug_toolbar"):
urlpatterns += [
path("__debug__/", include("debug_toolbar.urls")),
]