Janky fix to make birthday calendar set read_only

This commit is contained in:
Lennart
2025-01-19 13:34:00 +01:00
parent 3b99508065
commit 6448b23f8c
3 changed files with 13 additions and 6 deletions

View File

@@ -72,7 +72,7 @@ pub fn configure_dav<
web::scope("/user").service(
web::scope("/{principal}")
.service(PrincipalResourceService(&[
"calendar", "birthdays"
("calendar", false), ("birthdays", true)
]).actix_resource().name(PrincipalResource::route_name()))
.service(web::scope("/calendar")
.service(CalendarSetResourceService::new(store.clone()).actix_resource())