Added database exporter in settings panel. Downloads a .json file

This commit is contained in:
John Mullins
2023-12-22 18:58:12 +11:00
parent d74290036e
commit cc86eae6b9
4 changed files with 96 additions and 0 deletions
+1
View File
@@ -6,5 +6,6 @@ app_name = "settings"
urlpatterns = [
path('rollover', views_settings.rollover, name='rollover'),
path('nightly_task', views_settings.nightly_task, name='nightly_task'),
path('export', views_settings.export, name='export'),
path('', views_settings.settings, name='index'),
]