aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Files/AppData
Commit message (Collapse)AuthorAgeFilesLines
* chore: Add SPDX headerAndy Scherzinger2024-05-242-40/+4
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* chore: apply changes from Nextcloud coding standards 1.1.1Joas Schilling2023-11-232-4/+4
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
* Move CappedMemoryCache to OCPCarl Schwan2022-07-141-1/+1
| | | | | | | | This is an helpful helper that should be used in more place than just server and this is already the case with groupfodlers, deck, user_oidc and more using it, so let's make it public Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Merge pull request #32250 from nextcloud/cleanup/cappedmemorycacheJohn Molakvoæ2022-05-131-15/+6
|\
| * Add stricter psalm type for CappedMemoryCacheCarl Schwan2022-05-121-15/+6
| | | | | | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* | Make it possible to get the appdata folder using the public APICarl Schwan2022-05-111-13/+8
|/ | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Use storage filter when fetching previews to cleanupJulius Härtl2021-08-261-1/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-042-4/+2
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-102-2/+0
| | | | | | | | | | | | | | | 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>
* Update license headersChristoph Wurst2019-12-052-2/+8
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Some php-cs fixesRoeland Jago Douma2019-11-222-2/+3
| | | | | | | | | | | * 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>
* Followup 12833, gracefully handle the getting of /Roeland Jago Douma2018-12-211-2/+7
| | | | | | Else this breaks the app page Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* try to grab the appdata folder directly without going trough the whole treeRobin Appelman2018-12-062-26/+69
| | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* Make Appdata staticRoeland Jago Douma2018-05-142-6/+13
| | | | | | * Add fileid for simpleroot folders (only internal) Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Add TestsRoeland Jago Douma2016-10-051-10/+13
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Initial AppDataRoeland Jago Douma2016-10-052-0/+178
* Introduce simpleFS * Introduce IAppData * Introduce AppData Factory to get your AppData folder * Update FileDisplayResponse * AppData implements a ISimpleRoot but lazy. So only if an apps starts to access data will stuff get initialized Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>