aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/lib/Jobs
Commit message (Collapse)AuthorAgeFilesLines
* refactor(apps): Use constructor property promotion when possibleprovokateurin2024-10-211-16/+5
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* chore(deps): Update nextcloud/coding-standard to v1.3.1provokateurin2024-09-192-5/+5
| | | | Signed-off-by: provokateurin <kate@provokateurin.de>
* fix: Use migration instead of repair step for restoring custom colorFerdinand Thiessen2024-09-101-0/+205
| | | | Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
* chore: Add SPDX headerAndy Scherzinger2024-05-311-19/+2
| | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
* fix(theming): Fix query for configvalue as CLOB on OCIJulius Härtl2023-01-311-1/+2
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix theming migration repair step by passing correct type for argumentCôme Chilliet2023-01-101-6/+5
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* rename placeholderArthur Schiwon2022-11-181-2/+2
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* fix const visibilityArthur Schiwon2022-11-181-2/+2
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* use constblizzz2022-11-181-1/+1
| | | | Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
* use .json extentionsblizzz2022-11-181-1/+1
| | | | Co-authored-by: Pytal <24800714+Pytal@users.noreply.github.com> Signed-off-by: blizzz <blizzz@arthur-schiwon.de>
* do not store state in appconfigArthur Schiwon2022-11-181-14/+83
| | | | | | - and use count over isset for better understanding Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* remove dashboard check, as fallback did not consider it eitherArthur Schiwon2022-11-181-9/+0
| | | | Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* optimize background image migration jobArthur Schiwon2022-11-181-25/+69
| | | | | | | | | | | | | | | - separate in two stages: to prepare, and to actually migrate - in step one, prepare a list of users to be migrated, and store it compressed as app config - gzcompress can be used, because we already require zlib - upon the next calls (step two), slice off the first 5000 users and migrate them. Re-add job if necessary to repeat. - downside is that an app config value will in the beginning use the RAM with any request, until it thins out. Examples: 2m UUIDs (75 MiB) result in ~40 MiB compressed data, while 0.2Mib for 10 000 UUIDs, 0.4MiB for 20 000 and 4.1 MiB for 200 000. Acceptable. Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
* Fix migrationJohn Molakvoæ2022-10-141-6/+22
| | | | Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
* graceful background image handlingArthur Schiwon2022-10-131-0/+107
- fallback to background image from old location - migrate background images to new location as insensitive job Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>