From de841c81433102a356afbb78d330c64c6ffbf92d Mon Sep 17 00:00:00 2001 From: alexismdr Date: Fri, 28 Nov 2025 02:11:10 +0100 Subject: [PATCH] feat: distribute aasa on .well-known/apple-app-site-association --- note_kfet/urls.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/note_kfet/urls.py b/note_kfet/urls.py index 733e3bb7..eedb9f0f 100644 --- a/note_kfet/urls.py +++ b/note_kfet/urls.py @@ -33,6 +33,9 @@ urlpatterns = [ path('accounts/', include('django.contrib.auth.urls')), path('api/', include('api.urls')), path('permission/', include('permission.urls')), + + # Apple App Site Association + path('.well-known/apple-app-site-association', apple_app_site_association), ] # During development, serve static and media files