Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support for ratelimiting via annotations | Lukas Reschke | 2017-04-13 | 1 | -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> | ||||
* | Testing app switch to force-enable test user backend | Vincent Petry | 2016-12-23 | 1 | -1/+13 |
| | | | | Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | Testing md5home (#26854) | Vincent Petry | 2016-12-22 | 2 | -0/+86 |
| | | | | | | | | | | | | | | | | | * Allow clearing default user backends in config.php When specifying "user_backends" in config.php, a new option "default" when set to false will prevent the default user backend to be registered. The default one is the database backend. This makes it possible to select exclusive user backends from apps. * Testing app provides test user backend for alternative homes The backend provide md5 result to getHome() * Only md5 the user home when it's not the admin Signed-off-by: Lukas Reschke <lukas@statuscode.ch> | ||||
* | Fix apps/ | Joas Schilling | 2016-07-21 | 1 | -2/+3 |
| | |||||
* | Move the testing app to PSR-4 (#24580) | Joas Schilling | 2016-05-12 | 1 | -0/+70 |