diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-03-12 11:20:04 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-05-31 07:49:19 +0200 |
commit | d6d8e9215c69a9e8d4bfa2035c657b0a037f3a2f (patch) | |
tree | 942254503672d6ab3e0b6c8fca0bd4053db352b9 /apps/dav/tests/travis | |
parent | 9e596dd0cf455dc1639141c695f89c7d936f4c0c (diff) | |
download | nextcloud-server-d6d8e9215c69a9e8d4bfa2035c657b0a037f3a2f.tar.gz nextcloud-server-d6d8e9215c69a9e8d4bfa2035c657b0a037f3a2f.zip |
Add a trashbin for calendars and calendar objects
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/dav/tests/travis')
-rw-r--r-- | apps/dav/tests/travis/caldav/install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/dav/tests/travis/caldav/install.sh b/apps/dav/tests/travis/caldav/install.sh index e0ac30c9e46..d6064fb7a38 100644 --- a/apps/dav/tests/travis/caldav/install.sh +++ b/apps/dav/tests/travis/caldav/install.sh @@ -11,8 +11,12 @@ if [ ! -f pycalendar/setup.py ]; then git clone https://github.com/apple/ccs-pycalendar.git pycalendar fi -# create test user cd "$SCRIPTPATH/../../../../../" + +# disable the trashbin, so recurrent deletion of the same object works +php occ config:app:set dav calendarRetentionObligation --value=0 + +# create test user OC_PASS=user01 php occ user:add --password-from-env user01 php occ dav:create-calendar user01 calendar php occ dav:create-calendar user01 shared |