Initial working version with minor bugs
This commit is contained in:
parent
f946e4933a
commit
71b3993326
83 changed files with 34485 additions and 173 deletions
8
friend_codes/urls.py
Normal file
8
friend_codes/urls.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
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/<int:pk>/', DeleteFriendCodeView.as_view(), name='delete_friend_code'),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue