feat: add shared scouting notes mvp
This commit is contained in:
@ -9,5 +9,7 @@ urlpatterns = [
|
||||
path("players/<int:player_id>/", views.player_detail, name="player_detail"),
|
||||
path("players/<int:player_id>/favorite/", views.add_favorite, name="add_favorite"),
|
||||
path("players/<int:player_id>/unfavorite/", views.remove_favorite, name="remove_favorite"),
|
||||
path("players/<int:player_id>/notes/add/", views.add_note, name="add_note"),
|
||||
path("players/<int:player_id>/notes/<int:note_id>/delete/", views.delete_note, name="delete_note"),
|
||||
path("favorites/", views.favorites_list, name="favorites_list"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user