aboutsummaryrefslogtreecommitdiffstats
path: root/apps/testing/lib/Controller
Commit message (Collapse)AuthorAgeFilesLines
* Fix psalm issues in theming appCarl Schwan2022-01-261-38/+13
| | | | | | | | After this change, we are down to only one psalm warning for this app and related to the Application.php. This also make composer psam:update-baseline not silently ignore new errors. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-043-4/+1
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Update license headers for 19Christoph Wurst2020-04-291-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use elseif instead of else ifChristoph Wurst2020-04-101-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-053-3/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersMorris Jobke2017-11-063-1/+4
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Move over locking controllerRoeland Jago Douma2017-07-241-0/+246
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move over ConfigRoeland Jago Douma2017-07-241-0/+67
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Add support for ratelimiting via annotationsLukas Reschke2017-04-131-0/+52
This allows adding rate limiting via annotations to controllers, as one example: ``` @UserRateThrottle(limit=5, period=100) @AnonRateThrottle(limit=1, period=100) ``` Would mean that logged-in users can access the page 5 times within 100 seconds, and anonymous users 1 time within 100 seconds. If only an AnonRateThrottle is specified that one will also be applied to logged-in users. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>