Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 into import-warning
  • Loading branch information
Buhle79 committed Feb 19, 2025
2 parents 7ca4468 + 834ad63 commit 9b910ec
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 81 deletions.
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
- Search app
-->

## v1.4.0 - 2024-12-18
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",
"search",
"menu",
"wagtail.contrib.forms",
"wagtail.contrib.redirects",
Expand Down
2 changes: 0 additions & 2 deletions contentrepo/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from home import views as home_views
from home.api import api_router
from menu import views as menu_views
from search import views as search_views

from drf_spectacular.views import ( # isort:skip
SpectacularAPIView,
Expand All @@ -29,7 +28,6 @@
path("", RedirectView.as_view(url=reverse_lazy("wagtailadmin_home"))),
path("admin/", include(wagtailadmin_urls)),
path("documents/", include(wagtaildocs_urls)),
path("search/", search_views.search, name="search"),
path("mainmenu/", menu_views.mainmenu, name="mainmenu"),
path("submenu/", menu_views.submenu, name="submenu"),
path("randommenu/", menu_views.randommenu, name="randommenu"),
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# "Bug Tracker" = "https://github.com/praekeltfoundation/contentrepo/issues"

# [tool.setuptools]
# packages = ["contentrepo", "home", "menu", "search"]
# packages = ["contentrepo", "home", "menu"]

# [tool.setuptools.dynamic]
# dependencies = {file = ["requirements.txt"]}
Expand All @@ -37,7 +37,6 @@ packages = [
{ include = "contentrepo" },
{ include = "home" },
{ include = "menu" },
{ include = "search" },
]

[tool.poetry.dependencies]
Expand Down Expand Up @@ -101,7 +100,6 @@ exclude = [ # Regexes.
'^manage\.py',
'^contentrepo/',
'^menu/',
'^search/',
'^home/(management|migrations)/',
'^home/(admin|apps|api|constants|content_import_export|forms)\.py',
'^home/(mappers|mixins|models|panels|serializers)\.py',
Expand Down
Empty file removed search/__init__.py
Empty file.
38 changes: 0 additions & 38 deletions search/templates/search/search.html

This file was deleted.

37 changes: 0 additions & 37 deletions search/views.py

This file was deleted.

0 comments on commit 9b910ec

Please sign in to comment.