mirror of
https://github.com/tanrax/org-social-host
synced 2026-01-09 06:43:34 +01:00
18 lines
572 B
Python
18 lines
572 B
Python
"""
|
|
URL configuration for hosting app.
|
|
"""
|
|
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("signup", views.signup_view, name="signup"),
|
|
path("upload", views.upload_view, name="upload"),
|
|
path("delete", views.delete_view, name="delete"),
|
|
path("redirect", views.redirect_view, name="redirect"),
|
|
path("remove-redirect", views.remove_redirect_view, name="remove-redirect"),
|
|
path("public-routes", views.public_routes_view, name="public-routes"),
|
|
path("<str:nickname>/social.org", views.serve_file_view, name="serve-file"),
|
|
]
|