Files @ 456d1c163077
Branch filter:

Location: website/conservancy/fossy/urls.py

bsturmfels
Remove outdated copy of Apache config

This isn't being deployed from the repository and is a couple of servers out of date.
1
2
3
4
5
6
7
8
from django.urls import path

from .views import CommunityTrackProposalCreateView, CommunityTrackProposalThanksView

urlpatterns = [
    path('community-tracks/', CommunityTrackProposalCreateView.as_view(), name='fossy-add'),
    path('<uuid:pk>/', CommunityTrackProposalThanksView.as_view(), name='fossy-thanks'),
]