Disable the Tasks app

it has not been used in production for some time
This commit is contained in:
Adam Goldsmith 2024-04-30 14:33:08 -04:00
parent c2b1da743c
commit 12eb4038bc
2 changed files with 5 additions and 5 deletions

View File

@ -25,8 +25,8 @@ class Base(Configuration):
"django_admin_logs",
"django_object_actions",
"widget_tweaks",
"markdownx",
"recurrence",
# "markdownx",
# "recurrence",
"rest_framework",
"rest_framework.authtoken",
"django_q",
@ -37,7 +37,7 @@ class Base(Configuration):
"django_mysql",
"django_sendfile",
"django_bootstrap5",
"tasks.apps.TasksConfig",
# "tasks.apps.TasksConfig",
"rentals.apps.RentalsConfig",
"membershipworks.apps.MembershipworksConfig",
"paperwork.apps.PaperworkConfig",

View File

@ -31,7 +31,7 @@ router.registry.extend(membershipworks_router.registry)
urlpatterns = [
path("", include("dashboard.urls")),
path("tasks/", include("tasks.urls")),
# path("tasks/", include("tasks.urls")),
path("rentals/", include("rentals.urls")),
path("membershipworks/", include("membershipworks.urls")),
path("paperwork/", include("paperwork.urls")),
@ -59,7 +59,7 @@ urlpatterns = [
),
),
path("api-auth/", include("rest_framework.urls")),
path("markdownx/", include("markdownx.urls")),
# path("markdownx/", include("markdownx.urls")),
]
if settings.DEBUG: