X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/4a6513cd9ed9d66351b8973d3455204aad684fb5..db255ed9d242c56b010061fbdef8de9b696869d4:/src/depot/urls.py diff --git a/src/depot/urls.py b/src/depot/urls.py new file mode 100644 index 00000000..98045158 --- /dev/null +++ b/src/depot/urls.py @@ -0,0 +1,11 @@ +from django.urls import path +from . import views + + +urlpatterns = [ + path( + 'legimi-publish//', + views.LegimiPublishView.as_view(), + name='depot_legimi_publish' + ) +]