summaryrefslogtreecommitdiffstats
path: root/lib/private/AppFramework
Commit message (Collapse)AuthorAgeFilesLines
* Fix othersJoas Schilling2016-07-2124-36/+62
|
* Merge pull request #479 from nextcloud/add-bruteforce-throttlerLukas Reschke2016-07-212-15/+13
|\ | | | | Implement brute force protection
| * Implement brute force protectionLukas Reschke2016-07-202-15/+13
| | | | | | | | | | | | | | | | | | Class Throttler implements the bruteforce protection for security actions in Nextcloud. It is working by logging invalid login attempts to the database and slowing down all login attempts from the same subnet. The max delay is 30 seconds and the starting delay are 200 milliseconds. (after the first failed login)
* | Merge pull request #476 from nextcloud/port-same-site-cookiesLukas Reschke2016-07-203-1/+86
|\ \ | | | | | | [master] Port Same-Site Cookies to master
| * | [master] Port Same-Site Cookies to masterLukas Reschke2016-07-203-1/+86
| |/ | | | | | | Fixes https://github.com/nextcloud/server/issues/50
* / Add OCSMiddleware to catch OCS exceptionsRoeland Jago Douma2016-07-202-0/+88
|/ | | | | | | * OCSException * OCSBadRequestException * OCSForbiddenException * OCSNotFoundException
* Merge pull request #400 from nextcloud/ocs_appframeworkRoeland Douma2016-07-191-0/+55
|\ | | | | OCS routes use AppFramework
| * Add route testsRoeland Jago Douma2016-07-181-1/+1
| |
| * Allow registering of OCS routes with the appframeworkRoeland Jago Douma2016-07-181-0/+55
| |
* | Copy the regexes to the public interfaceJoas Schilling2016-07-181-1/+11
|/
* add PasswordLoginForbiddenExceptionChristoph Wurst2016-06-171-2/+7
|
* create session token on all APIsChristoph Wurst2016-06-131-1/+1
|
* use client login method on CORS routesChristoph Wurst2016-06-081-6/+6
|
* remember redirect_url when solving the 2FA challengeChristoph Wurst2016-06-011-1/+2
|
* Update license headersLukas Reschke2016-05-2618-16/+28
|
* Add a background job that generates notifications when an update is availableJoas Schilling2016-05-241-0/+4
|
* Add two factor auth to coreChristoph Wurst2016-05-231-2/+13
|
* Add a method to lock a tableJoas Schilling2016-05-211-1/+16
|
* add IClientService to DI containerChristoph Wurst2016-05-011-0/+4
|
* Make ownCloud work again in php 7.0.6Roeland Jago Douma2016-04-281-0/+3
| | | | See https://bugs.php.net/bug.php?id=72117
* Allow automatic dependency injection for OCP\Mail\MailerJoas Schilling2016-04-251-0/+4
|
* Fix inconsistent nameing of AppFrameworkRoeland Jago Douma2016-04-225-12/+12
|
* Move \OC\AppFramework to PSR-4Roeland Jago Douma2016-04-2222-0/+3683
* Also moved the autoloader setup a bit up since we need it in initpaths