aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/CalDAV/ResourceBooking
Commit message (Collapse)AuthorAgeFilesLines
* refactor(apps): Use constructor property promotion when possibleprovokateurin2024-10-211-24/+7
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* style: update codestyle for coding-standard 1.2.3Daniel Kesselberg2024-08-251-1/+1
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-273-60/+6
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* chore: apply changes from Nextcloud coding standards 1.1.1Joas Schilling2023-11-233-18/+18
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* Refactors "strpos" calls in /apps/dav to improve code readability.Faraz Samapoor2023-06-121-4/+4
| | | | Signed-off-by: Faraz Samapoor <f.samapoor@gmail.com>
* chore(dav): Make json_encode and json_decode throw on errorChristoph Wurst2023-01-191-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Migrate dav application from ILogger to LoggerInterfaceCôme Chilliet2022-05-023-29/+7
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Extend caldav resource searchAnna Larch2021-07-301-37/+113
| | | | Signed-off-by: Anna Larch <anna@nextcloud.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-043-8/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Bump nextcloud/coding-standard from 0.3.0 to 0.5.0dependabot-preview[bot]2021-02-181-4/+4
| | | | | | | | | | Bumps [nextcloud/coding-standard](https://github.com/nextcloud/coding-standard) from 0.3.0 to 0.5.0. - [Release notes](https://github.com/nextcloud/coding-standard/releases) - [Changelog](https://github.com/nextcloud/coding-standard/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/coding-standard/compare/v0.3.0...v0.5.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add some closure return typesRoeland Jago Douma2021-02-141-1/+1
| | | | | | Found by psalm Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Format code to a single space around binary operatorsChristoph Wurst2020-10-051-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headers for 19Christoph Wurst2020-04-291-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add visibility to all methods and position of static keywordChristoph Wurst2020-04-101-3/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-12/+11
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Unify function spacing to PSR2 recommendationChristoph Wurst2020-04-091-2/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Remove unused importsChristoph Wurst2020-03-251-1/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-053-3/+6
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Some php-cs fixesRoeland Jago Douma2019-11-223-2/+5
| | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* use principaluri instead of userid, allowing to add delegates for rooms and ↵Georg Ehrke2019-08-153-37/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | things Signed-off-by: Georg Ehrke <developer@georgehrke.com> !fixup add owner_id and proxy_id as db index, since we use it for querying Signed-off-by: Georg Ehrke <developer@georgehrke.com> !fixup don't add ACL for each individual proxy, just use calendar-proxy groups Signed-off-by: Georg Ehrke <developer@georgehrke.com> !fixup allow delegation of resources / rooms Signed-off-by: Georg Ehrke <developer@georgehrke.com> !fixup fix addIndex call in migration Signed-off-by: Georg Ehrke <developer@georgehrke.com> !fixup fix remaining constructor calls of Principal Signed-off-by: Georg Ehrke <developer@georgehrke.com> !fixup minor fixes and unit tests Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Allow to do a principal property search based on metadata keysGeorg Ehrke2019-08-011-1/+73
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* provide room / resource properties as principal propertiesGeorg Ehrke2019-08-013-10/+57
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* implement principal property search for calendar user address set propertyGeorg Ehrke2019-03-211-0/+8
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* add correct calendar-user-type to resource and room backendGeorg Ehrke2018-10-223-4/+12
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* Shorten resource table names to allow install on oracle againJoas Schilling2018-07-121-1/+1
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* apply group restrictions to resourcesGeorg Ehrke2018-06-253-25/+93
| | | | Signed-off-by: Georg Ehrke <developer@georgehrke.com>
* add resource / room principalsGeorg Ehrke2018-06-253-0/+383
Signed-off-by: Georg Ehrke <developer@georgehrke.com>