Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
-[x] visualization typo fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
sonikabaniya committed Apr 20, 2021
1 parent 1109ec0 commit b2e49f7
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
./manage.py makemigrations --check --dry-run
./manage.py check --fail-level WARNING
./manage.py loaddata country redflag equitycategory equitykeywords
coverage run --source content,country,covidadmin,vizualization,country/management/commands manage.py test --keepdb
coverage run --source content,country,covidadmin,visualization,country/management/commands manage.py test --keepdb
env:
DB_NAME: postgres
DB_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion country/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from content.models import DataImport
from country.models import ImportBatch
from country.tasks import delete_dataset, store_in_temp_table
from vizualization.views import add_filter_args
from visualization.views import add_filter_args

from .models import Buyer, Country, Language, OverallSummary, Supplier, Tender
from .serializers import (
Expand Down
2 changes: 1 addition & 1 deletion covidadmin/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
"rest_framework",
"corsheaders",
"django_filters",
"vizualization",
"visualization",
"wagtail.contrib.forms",
"wagtail.contrib.redirects",
"wagtail.contrib.modeladmin",
Expand Down
4 changes: 2 additions & 2 deletions covidadmin/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from wagtail.core import urls as wagtail_urls
from wagtail.documents import urls as wagtaildocs_urls

from vizualization.views import SlugBlogShow, SlugStaticPageShow, UpcomingEventView
from visualization.views import SlugBlogShow, SlugStaticPageShow, UpcomingEventView

from .api import api_router

Expand All @@ -31,7 +31,7 @@

urlpatterns = [
path("admin/", admin.site.urls),
path("api/v1/visualization/", include("vizualization.urls")),
path("api/v1/visualization/", include("visualization.urls")),
path("api/contents/<str:type>/<str:slug>/", SlugBlogShow.as_view()),
path("api/staticpage/<str:type>", SlugStaticPageShow.as_view()),
path("api/upcoming-events", UpcomingEventView.as_view()),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b2e49f7

Please sign in to comment.