from django.urls import path from .views import ListFriendCodesView, AddFriendCodeView, DeleteFriendCodeView urlpatterns = [ path('', ListFriendCodesView.as_view(), name='list_friend_codes'), path('add/', AddFriendCodeView.as_view(), name='add_friend_code'), path('delete//', DeleteFriendCodeView.as_view(), name='delete_friend_code'), ]