refactor: Move export into separate app

This commit is contained in:
James Graham
2020-04-01 16:00:22 +01:00
parent 76270c4572
commit d02f865952
17 changed files with 188 additions and 128 deletions

View File

@@ -38,14 +38,6 @@ urlpatterns = [
views.relationship.RelationshipUpdateView.as_view(),
name='relationship.update'),
path('people/export',
views.export.PersonExportView.as_view(),
name='person.export'),
path('relationships/export',
views.export.RelationshipExportView.as_view(),
name='relationship.export'),
path('network',
views.network.NetworkView.as_view(),
name='network'),