Skip to content

Commit

Permalink
chore(ccip): remove sponsor view
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwang44 committed Apr 15, 2024
1 parent 4a1873f commit e03b3bb
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion src/ccip/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
urlpatterns = [
# API for CCIP
url(r'^$', views.CCIPAPIView.as_view()),
url(r'^sponsors/$', views.CCIPSponsorsView.as_view()),
url(r'^staff/$', views.CCIPStaffView.as_view()),
]
6 changes: 0 additions & 6 deletions src/ccip/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from django.views.generic import TemplateView, View

from core.utils import TemplateExistanceStatusResponse
from core.views import IndexView
from events.models import (
CustomEvent,
KeynoteEvent,
Expand Down Expand Up @@ -287,11 +286,6 @@ def _room_sort_key(v):
}, safe=False)


class CCIPSponsorsView(IndexView):
template_name = 'ccip/sponsors.html'
response_class = TemplateExistanceStatusResponse


class CCIPStaffView(TemplateView):
template_name = 'ccip/staff.html'
response_class = TemplateExistanceStatusResponse

0 comments on commit e03b3bb

Please sign in to comment.