aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/AppInfo
Commit message (Collapse)AuthorAgeFilesLines
...
* Migrate database transaction level check to SetupCheck APICôme Chilliet2023-11-071-0/+2
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Migrate email test to new SetupCheck APICôme Chilliet2023-11-071-0/+2
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Migrate getenv test to new SetupCheck APICôme Chilliet2023-11-071-0/+2
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Migrate missing PHP modules check to new API and improve itCôme Chilliet2023-10-191-0/+2
| | | | | | Test all modules listed as required in our documentation Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Migrate InternetConnectivity check to new APICôme Chilliet2023-10-191-2/+4
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Migrate ReadOnlyConfig and DefaultPhoneRegionSet to new APICôme Chilliet2023-10-191-0/+4
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Move existing setup checks to new APICôme Chilliet2023-10-191-0/+6
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Fix UI and add PhpOutdated checkCôme Chilliet2023-10-191-0/+2
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* ProgressCarl Schwan2023-10-191-0/+2
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Add api to register setup checksCarl Schwan2023-10-191-0/+2
| | | | Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Add new user filter to search.sorbaugh2023-10-121-0/+3
| | | | | | | | Add regex to prevent filter collision in user-list page Usage: 1. Type a string in the search bar 2. Add in:users to display only users in the search result
* Add .well-known/changepassword handlerRoeland Jago Douma2022-10-221-0/+2
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Transfer to settings app and registerChristopher Ng2022-03-181-0/+3
| | | | Signed-off-by: Christopher Ng <chrng8@gmail.com>
* Add admin privilege delegation for admin settingsCarl Schwan2021-09-291-0/+3
| | | | | | | This makes it possible for selected groups to access some settings pages. Signed-off-by: Carl Schwan <carl@carlschwan.eu>
* Add security.txtLukas Reschke2021-06-231-0/+4
| | | | | | Ref https://securitytxt.org Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-041-2/+0
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Move group activities to eventsRoeland Jago Douma2021-03-031-23/+6
| | | | | | | | | | Use the fancy events. Nicer code Nicely isolated code win-win Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Move app_password_created to a typed eventChristoph Wurst2021-02-091-32/+5
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2020-12-301-1/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add well known handlers APIChristoph Wurst2020-12-161-21/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Remove unneeded service - found by PsalmMorris Jobke2020-11-031-10/+0
| | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Format code to a single space around binary operatorsChristoph Wurst2020-10-051-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* App navigation via unified searchJoas Schilling2020-08-051-0/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Add settings sections to unified searchJoas Schilling2020-08-031-0/+2
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Use the proper IAppContainer and IServerContainer type hints to know which ↵Morris Jobke2020-07-211-15/+15
| | | | | | code runs with which container Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Adjust apps' code to use the ContainerInterfaceChristoph Wurst2020-07-211-26/+29
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Migrate settigns to the PSR containerChristoph Wurst2020-07-161-12/+21
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Migrate Settings to new bootstrap mechanismChristoph Wurst2020-06-171-16/+23
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headers for 19Christoph Wurst2020-04-291-0/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Add visibility to all constantsChristoph Wurst2020-04-101-1/+1
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-3/+1
| | | | | | | | | | | | | | | 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-4/+4
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Start with webauthnRoeland Jago Douma2020-03-311-1/+2
| | | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Remove unused importsChristoph Wurst2020-03-251-6/+0
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Use activity registration for the settingsRoeland Jago Douma2020-01-311-9/+0
| | | | Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Update license headersChristoph Wurst2019-12-051-2/+6
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Move settings to an appChristoph Wurst2019-09-281-0/+229
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>