Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | chore: Apply new rector configuration to apps folder | Côme Chilliet | 2025-02-13 | 1 | -11/+12 |
| | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> | ||||
* | refactor(apps): Use constructor property promotion when possible | provokateurin | 2024-10-21 | 1 | -4/+4 |
| | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | ||||
* | chore(apps): Apply new rector configuration to autouse classes | Côme Chilliet | 2024-10-15 | 1 | -12/+14 |
| | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> | ||||
* | refactor(files_trashbin): Add Storage parameter strong types | provokateurin | 2024-10-07 | 1 | -2/+2 |
| | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | ||||
* | fix: preserve fileid when moving from objectstore to non-objectstore | Robin Appelman | 2024-09-27 | 1 | -4/+0 |
| | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | fix(files_trashbin): Fix all IStorage return types | provokateurin | 2024-09-26 | 1 | -2/+2 |
| | | | | Signed-off-by: provokateurin <kate@provokateurin.de> | ||||
* | test: fix trashbin StorageTest | Robin Appelman | 2024-09-18 | 1 | -0/+1 |
| | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | refactor: Add void return type to PHPUnit test methods | Christoph Wurst | 2024-09-15 | 1 | -18/+18 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | style: update codestyle for coding-standard 1.2.3 | Daniel Kesselberg | 2024-08-25 | 1 | -2/+2 |
| | | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de> | ||||
* | chore: Add SPDX header | Andy Scherzinger | 2024-06-02 | 1 | -28/+3 |
| | | | | Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de> | ||||
* | Migrate applications away from deprecated ILogger | Côme Chilliet | 2023-09-21 | 1 | -1/+0 |
| | | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com> | ||||
* | only gather dependencies for trashbin wrapper once | Robin Appelman | 2023-08-18 | 1 | -1/+2 |
| | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | fix(files_trashbin): Migrate to IEventDispatcher and emit as typed event | Joas Schilling | 2023-07-19 | 1 | -2/+2 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | fix(trashbin): Truncate long filenames | Christopher Ng | 2023-05-31 | 1 | -0/+45 |
| | | | | Signed-off-by: Christopher Ng <chrng8@gmail.com> | ||||
* | Handle empty files in version creation logic | Louis Chemineau | 2023-01-26 | 1 | -2/+0 |
| | | | | Signed-off-by: Louis Chemineau <louis@chmn.me> | ||||
* | Adapt files_versions tests to modernized hooks | Louis Chemineau | 2023-01-26 | 1 | -12/+4 |
| | | | | Signed-off-by: Louis Chemineau <louis@chmn.me> | ||||
* | skip localstorage dependend trashbin test when not using local user storage | Robin Appelman | 2022-02-25 | 1 | -0/+4 |
| | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | Update php licenses | John Molakvoæ (skjnldsv) | 2021-06-04 | 1 | -1/+0 |
| | | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | ||||
* | disable trasbin during the moveFromStorage fallback | Robin Appelman | 2021-02-17 | 1 | -0/+29 |
| | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | Update all license headers for Nextcloud 21 | Christoph Wurst | 2020-12-16 | 1 | -1/+1 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Change PHPDoc type hint from PHPUnit_Framework_MockObject_MockObject to ↵ | Morris Jobke | 2020-08-12 | 1 | -2/+2 |
| | | | | | | \PHPUnit\Framework\MockObject\MockObject Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Use IBootstrap for the files_trashbin app | Morris Jobke | 2020-07-23 | 1 | -1/+5 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Update share type constant usage | Joas Schilling | 2020-06-24 | 1 | -2/+3 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | add locking to resolve concurent move to trashbin conflicts | Robin Appelman | 2020-05-06 | 1 | -8/+42 |
| | | | | | | | uses a lock to prevent two requests from moving a file to the trashbin concurrently (causing sql duplicate key errors) Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | Format control structures, classes, methods and function | Christoph Wurst | 2020-04-10 | 1 | -2/+3 |
| | | | | | | | | | | | | | | | 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> | ||||
* | Use the short array syntax, everywhere | Christoph Wurst | 2020-03-26 | 1 | -8/+8 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Use the shorter phpunit syntax for mocked return values | Christoph Wurst | 2020-03-25 | 1 | -4/+4 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Update license headers | Christoph Wurst | 2019-12-05 | 1 | -1/+3 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | Make phpunit8 compatible | Roeland Jago Douma | 2019-11-27 | 1 | -2/+2 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Some php-cs fixes | Roeland Jago Douma | 2019-11-22 | 1 | -1/+1 |
| | | | | | | | | | | | * 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> | ||||
* | Fix share tests | Roeland Jago Douma | 2019-11-20 | 1 | -2/+4 |
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Emit moveToTrash event only for the deleting user | Julius Härtl | 2019-08-06 | 1 | -1/+4 |
| | | | | Signed-off-by: Julius Härtl <jus@bitgrid.net> | ||||
* | Add event dispatcher to OCP | Christoph Wurst | 2019-06-25 | 1 | -3/+2 |
| | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> | ||||
* | fix trash storage wrapper tests | Robin Appelman | 2018-10-17 | 1 | -0/+3 |
| | | | | Signed-off-by: Robin Appelman <robin@icewind.nl> | ||||
* | Fix risky tests without assertions | Joas Schilling | 2018-01-25 | 1 | -0/+1 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | Update license headers | Morris Jobke | 2017-11-06 | 1 | -0/+1 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Use ::class in test mocks | Morris Jobke | 2017-10-24 | 1 | -1/+2 |
| | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de> | ||||
* | Don't use deprecated $this->getMock() method | Joas Schilling | 2017-10-09 | 1 | -2/+2 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | allow apps to control the trash bin | Bjoern Schiessle | 2017-09-15 | 1 | -11/+41 |
| | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org> | ||||
* | delete files right away in case of a encryption exception | Bjoern Schiessle | 2017-03-14 | 1 | -1/+4 |
| | | | | Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org> | ||||
* | Update with robin | Joas Schilling | 2016-07-21 | 1 | -1/+1 |
| | |||||
* | Fix apps/ | Joas Schilling | 2016-07-21 | 1 | -3/+4 |
| | |||||
* | Update license headers | Lukas Reschke | 2016-05-26 | 1 | -1/+3 |
| | |||||
* | Move files_trashbin to PSR-4 (#24570) | Joas Schilling | 2016-05-12 | 1 | -0/+560 |