Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-12-21Add twofactor_providers_uid indexRoeland Jago Douma
Fixes #12943 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-11-06Fix index namesMorris Jobke
* see #11527
2018-10-02Add uid_owner and uid_initiator share tabe indicesRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2018-07-19Add filecache index on mtimeRobin Appelman
Gives searching by mtime and "recent" a proper index to use Signed-off-by: Robin Appelman <robin@icewind.nl>
2018-06-06Add a hint that some indexes are not added yetMorris Jobke
* gives the admin a chance to discover the missing indexes and improve the performance of the instance without digging through the manual * nicely integrated in the setup checks where this kind of hints belong to * also adds an option to integrate this from an app based on events * fix style of setting warnings Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-11-06Update license headersMorris Jobke
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-05-10Automatic creation of Identity managerJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-05-10Automatic injection for CssControllerJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-05-10Automatic injection for JsControllerJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-04-10Move OC_Defaults to OCP\DefaultsMorris Jobke
* currently there are two ways to access default values: OCP\Defaults or OC_Defaults (which is extended by OCA\Theming\ThemingDefaults) * our code used a mixture of both of them, which made it hard to work on theme values * this extended the public interface with the missing methods and uses them everywhere to only rely on the public interface Signed-off-by: Morris Jobke <hey@morrisjobke.de>
2017-03-24[PoC] JS CombinerRoeland Jago Douma
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-01-19Use correct theming when returning the defaultsJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2017-01-06No need for the CssManagerRoeland Jago Douma
* It is a simple wrapper we can always add it later if needed Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2017-01-06Do not add ICssManager to OCPRoeland Jago Douma
We can add it later if needed Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
2016-11-21Add identity proofLukas Reschke
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2016-11-03[WIP] Use mail for encrypting the password reset token as wellLukas Reschke
2016-10-05Clean up core/Application a bit moreJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-09-30Remove unused endpointJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-09-30Use magic DI for core controllersJoas Schilling
Signed-off-by: Joas Schilling <coding@schilljs.com>
2016-08-29UserController does not require DefaultsRoeland Jago Douma
2016-08-25Remove unused core wrappersRoeland Jago Douma
2016-08-25AvatarController cleanupRoeland Jago Douma
* Use all DI components * Let the AppFramework resolve the AvatarController * Update unit tests * Unit tests no longer require DB
2016-08-09Move getCapabilities over to CoreRoeland Jago Douma
2016-07-21Fix othersJoas Schilling
2016-07-20Implement brute force protectionLukas Reschke
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)
2016-07-15Use the themed Defaults everywhereJoas Schilling
2016-07-07Revert "occ web executor (#24957)"Morris Jobke
This reverts commit 854352d9a064a1e469ede207493bce44fd41d96c.
2016-06-22occ web executor (#24957)VicDeo
* Initial web executor * Fix PHPDoc Fix broken integration test OccControllerTests do not require database access - moch them all! Kill unused sprintf
2016-06-07do not generate device token if 2FA is enable for userChristoph Wurst
2016-05-26Update license headersLukas Reschke
2016-05-23Add two factor auth to coreChristoph Wurst
2016-05-11Add controller to generate client tokensChristoph Wurst
2016-05-11token based authChristoph Wurst
* Add InvalidTokenException * add DefaultTokenMapper and use it to check if a auth token exists * create new token for the browser session if none exists hash stored token; save user agent * encrypt login password when creating the token
2016-04-18Move logout to controllerLukas Reschke
Testable code. Yay.
2016-04-15Move login form into controllerLukas Reschke
First step on getting the authorisation stuff cleaned up. This is only for the login form, all other stuff is still where it is.
2016-04-05Move OC\Core and OC\Settings to composer autoloaderLukas Reschke