summaryrefslogtreecommitdiffstats
path: root/core/Controller/TokenController.php
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused endpointJoas Schilling2016-09-301-105/+0
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use magic DI for core controllersJoas Schilling2016-09-301-4/+4
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Minor cleanup in core ControllersRoeland Jago Douma2016-08-291-5/+2
|
* Fix othersJoas Schilling2016-07-211-1/+3
|
* Implement brute force protectionLukas Reschke2016-07-201-8/+10
| | | | | | | | | 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)
* do not generate device token if 2FA is enable for userChristoph Wurst2016-06-071-11/+25
|
* Update license headersLukas Reschke2016-05-261-1/+0
|
* when generating browser/device token, save the login name for later password ↵Christoph Wurst2016-05-241-1/+1
| | | | checks
* generate device token for UID, not login nameChristoph Wurst2016-05-241-2/+3
| | | | fixes #24785
* fix PHPDoc and other minor issuesChristoph Wurst2016-05-111-1/+2
|
* PHPDoc and other minor fixesChristoph Wurst2016-05-111-2/+4
|
* add unit tests for all new classesChristoph Wurst2016-05-111-3/+3
|
* Add token auth for OCS APIsChristoph Wurst2016-05-111-2/+6
|
* Add index on 'last_activity'Christoph Wurst2016-05-111-2/+3
| | | | | | add token type column and delete only temporary tokens in the background job debounce token updates; fix wrong class import
* Add controller to generate client tokensChristoph Wurst2016-05-111-0/+82