summaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/Settings
Commit message (Collapse)AuthorAgeFilesLines
* Update license headers for 19Christoph Wurst2020-04-291-1/+2
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-103-8/+4
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Unify function spacing to PSR2 recommendationChristoph Wurst2020-04-091-3/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use a blank line after the opening tagChristoph Wurst2020-04-091-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use exactly one empty line after the namespace declarationChristoph Wurst2020-04-091-1/+0
| | | | | | For PSR2 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #20241 from nextcloud/fix/license-headers-19Roeland Jago Douma2020-04-0110-12/+8
|\ | | | | Update the license headers for Nextcloud 19
| * Update the license headers for Nextcloud 19Christoph Wurst2020-03-3110-12/+8
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Start with webauthnRoeland Jago Douma2020-03-311-0/+80
|/ | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Merge pull request #20170 from nextcloud/techdebt/remove-unused-importsChristoph Wurst2020-03-271-1/+0
|\ | | | | Remove unused imports
| * Remove unused importsChristoph Wurst2020-03-251-1/+0
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Use the short array syntax, everywhereChristoph Wurst2020-03-261-1/+1
|/ | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add setting to restrict user enumeration to groupsJulius Härtl2020-03-201-0/+1
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Hide development notice when subscription is validJulius Härtl2020-03-061-0/+13
| | | | Signed-off-by: Julius Härtl <jus@bitgrid.net>
* Fix unit testsJoas Schilling2020-02-101-12/+21
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Warn admins about delayed cron executionsJoas Schilling2020-02-081-4/+22
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use the l10n from settingsRoeland Jago Douma2020-02-031-2/+2
| | | | | | Fixes #19261 Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move Admin Settings also to info.xmlRoeland Jago Douma2020-01-315-5/+5
| | | | | | | More cleanup of the Settings apps. Makes the manager cleaner and a proper manager. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move personal settings to proper registrationRoeland Jago Douma2020-01-305-5/+5
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move password settingsRoeland Jago Douma2020-01-301-3/+4
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move the personal 2FA settings to its own appRoeland Jago Douma2020-01-292-54/+98
| | | | | | | | Small isolated classes are easier to understand and to maintain! Another step in the cleaning up of the settings. So that adding new stuff later is easier. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move can create token logicRoeland Jago Douma2020-01-292-12/+13
| | | | | | | It makes sense to have this in the actual authtoken settings. As well. This is where it is used. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update license headers for 18Christoph Wurst2019-12-202-1/+3
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Merge pull request #18429 from nextcloud/locale-fallbackRoeland Jago Douma2019-12-171-0/+7
|\ | | | | add a fallback locale for personal settings page
| * add a fallback locale for personal settings pageRobin Appelman2019-12-161-0/+7
| | | | | | | | | | | | | | otherwise if the locale is set to an invalid or no longer existing locale the rendering of the setting page will throw an exception Signed-off-by: Robin Appelman <robin@icewind.nl>
* | clarified default permission setting stringSascha Wiswedel2019-12-121-1/+1
|/ | | | | | The permission is actually about re-sharing, not about sharing after all Signed-off-by: Sascha Wiswedel <sascha.wiswedel@nextcloud.com>
* Update license headersChristoph Wurst2019-12-0510-10/+35
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* My first stupid attempt at expanding the admin interfaceRoeland Jago Douma2019-11-271-0/+3
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Some php-cs fixesRoeland Jago Douma2019-11-222-1/+2
| | | | | | | | | | | * Order the imports * No leading slash on imports * Empty line before namespace * One line per import * Empty after imports * Emmpty line at bottom of file Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Do not create Application instances directlyChristoph Wurst2019-10-111-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Move settings to an appChristoph Wurst2019-09-2810-0/+1108
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>