New right "i": Only allowing HTTP method GET

This commit is contained in:
Unrud 2020-04-22 19:20:42 +02:00
parent 9bd852ba5e
commit 7f2d5cea62
5 changed files with 55 additions and 15 deletions

13
rights
View file

@ -75,19 +75,24 @@
# Example: Allow everybody (including unauthenticated users) to read
# the collection "public"
# Allow reading collection "public"
# Allow reading collection "public" for authenticated users
#[public-principal]
#user: .*
#user: .+
#collection: public
#permissions: R
# Allow reading all calendars and address books that are direct children of
# the collection "public"
# the collection "public" for authenticated users
#[public-calendars]
#user: .*
#user: .+
#collection: public/[^/]+
#permissions: r
# Allow access to public calendars and address books via HTTP GET for everyone
#[public-calendars-restricted]
#user: .*
#collection: public/[^/]+
#permissions: i
# Example: Grant users of the form user@domain.tld read access to the
# collection "domain.tld"