Ajout système caldav

This commit is contained in:
Ambulance Clerc
2022-06-19 23:47:09 +02:00
parent 501468b6dd
commit 1d173ffe7c
11 changed files with 143 additions and 1 deletions

12
caldav/urls.py Normal file
View File

@@ -0,0 +1,12 @@
from django.urls import path
from . import views
app_name = "caldav"
urlpatterns = [
path('task', views.view_task_caldav, name='view_task_caldav'),
]