Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove menu app #422

Merged
merged 3 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Helper texts for some ordered content sets
### Removed
- Locale field on exports
- Menu app
- Search app
-->

Expand Down
1 change: 0 additions & 1 deletion contentrepo/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

INSTALLED_APPS = [
"home",
"menu",
"wagtail.contrib.forms",
"wagtail.contrib.redirects",
"wagtail.contrib.settings",
Expand Down
7 changes: 0 additions & 7 deletions contentrepo/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

from home import views as home_views
from home.api import api_router
from menu import views as menu_views

from drf_spectacular.views import ( # isort:skip
SpectacularAPIView,
Expand All @@ -28,11 +27,6 @@
path("", RedirectView.as_view(url=reverse_lazy("wagtailadmin_home"))),
path("admin/", include(wagtailadmin_urls)),
path("documents/", include(wagtaildocs_urls)),
path("mainmenu/", menu_views.mainmenu, name="mainmenu"),
path("submenu/", menu_views.submenu, name="submenu"),
path("randommenu/", menu_views.randommenu, name="randommenu"),
path("faqmenu/", menu_views.faqmenu, name="faqmenu"),
path("suggestedcontent/", menu_views.suggestedcontent, name="suggestedcontent"),
path("api/schema/", SpectacularAPIView.as_view(), name="schema"),
path(
"api/schema/swagger-ui/",
Expand All @@ -44,7 +38,6 @@
SpectacularRedocView.as_view(url_name="schema"),
name="redoc",
),
path("api/whatsapptemplates/", menu_views.randommenu, name="whatsapptemplate"),
]


Expand Down
Empty file removed menu/__init__.py
Empty file.
Empty file removed menu/tests/__init__.py
Empty file.
205 changes: 0 additions & 205 deletions menu/tests/test_views.py

This file was deleted.

7 changes: 0 additions & 7 deletions menu/utils.py

This file was deleted.

Loading