mirror of
https://github.com/Southampton-RSG/breccia-mapper.git
synced 2026-03-03 11:27:09 +00:00
feat(people): Add network view
Network view shows people and relationships between them Resolves #21 Resolves #20 Part of #14
This commit is contained in:
@@ -37,4 +37,16 @@ urlpatterns = [
|
||||
path('relationships/<int:relationship_pk>/update',
|
||||
views.RelationshipUpdateView.as_view(),
|
||||
name='relationship.update'),
|
||||
|
||||
path('api/people',
|
||||
views.PersonApiView.as_view(),
|
||||
name='person.api.list'),
|
||||
|
||||
path('api/relationships',
|
||||
views.RelationshipApiView.as_view(),
|
||||
name='relationship.api.list'),
|
||||
|
||||
path('network',
|
||||
views.NetworkView.as_view(),
|
||||
name='network'),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user