Skip to content
This repository has been archived by the owner on Mar 15, 2024. It is now read-only.

disabled ways-to-give route #1771

Merged
merged 2 commits into from
Dec 15, 2023
Merged
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
6 changes: 4 additions & 2 deletions donate/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from donate.payments import urls as payments_urls
from donate.payments.braintree_webhooks import BraintreeWebhookView
from donate.payments.stripe_webhooks import StripeWebhookView
from donate.views import EnvVariablesView, ThunderbirdRedirectView, WaysToGiveView, apple_pay_domain_association_view
from donate.views import EnvVariablesView, ThunderbirdRedirectView, apple_pay_domain_association_view

# Patterns not subject to i18n
urlpatterns = [
Expand All @@ -42,7 +42,9 @@
# See https://django-statici18n.readthedocs.io
path('jsi18n/', cache_page(86400)(JavaScriptCatalog.as_view()), name='javascript-catalog'),
path('', include(payments_urls)),
path('ways-to-give/', WaysToGiveView.as_view(), name='ways_to_give'),
# Ways to give view is commented out as we are now hosting that page on foundation.mozilla.org.
# For more info, see: https://github.com/MozillaFoundation/donate-wagtail/issues/1770
# path('ways-to-give/', WaysToGiveView.as_view(), name='ways_to_give'),
path('403/', TemplateView.as_view(template_name='403.html')),

# set up set language redirect view
Expand Down
Loading