Ben Sturmfels
bb2eab2968
Requests like /fossy/xyz123/ were causing an error due to "xyz123" not being a valid UUID. We should just return a 404 in this case, which the URL routing will now do automatically.
8 lines
317 B
Python
8 lines
317 B
Python
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'),
|
|
]
|