summaryrefslogtreecommitdiffstats
path: root/lib/private/systemconfig.php
Commit message (Collapse)AuthorAgeFilesLines
* Sanitize more data in config reportLukas Reschke2016-04-011-1/+13
| | | | | | | | | This sanitizes the following keys as well: - `proxyuserpwd` - `shared_secret` of `log.condition` - `license-key` - `password` of `redis`
* Update author informationLukas Reschke2016-03-011-0/+1
| | | | Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
* Hide updater.secret from occ output by defaultLukas Reschke2016-02-091-0/+1
| | | | We should not have people post that value to us.
* Happy new year!Thomas Müller2016-01-121-1/+2
|
* Inject Config into SystemConfigRoeland Jago Douma2015-12-181-5/+12
|
* Get rid of legacy OC_ConfigRoeland Jago Douma2015-12-181-5/+5
| | | | | We were still using the lecagy class OC_Config all over the place. Which was a wrapper around the new class OC\Config
* Deduplicate constantJoas Schilling2015-09-251-3/+4
|
* Move the filtering of sensitive data to the config classJoas Schilling2015-09-251-0/+53
|
* Add missing tunnel on new classJoas Schilling2015-07-071-0/+8
|
* Update license headersJenkins for ownCloud2015-03-261-5/+16
|
* Revert "Updating license headers"Morris Jobke2015-02-261-16/+6
| | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36.
* Updating license headersJenkins for ownCloud2015-02-231-6/+16
|
* Add a method to set/unset multiple config values in one callJoas Schilling2015-01-231-0/+10
| | | | | This reduces the number of file writes we do for config.php and therefor hopefully helps lowering the chances for empty config.php files
* Extract interaction with config.php into SystemConfigMorris Jobke2014-12-081-0/+49
* introduce SystemConfig to avoid DI circle (used by database connection which is itself needed by AllConfig that itself contains the methods to access the config.php which then would need the database connection - did you get it? ;)) * use DI container and use that method in legacy code paths (for easier refactoring later) * create and use getSystemConfig instead of query() in DI container