diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2014-02-10 14:34:24 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-02-10 14:34:24 +0100 |
commit | eba1d574cf946c215ca3fd3154ecc3bfe5742d2b (patch) | |
tree | 041cd174f8d47b2d9fd5292253339e5f181efa41 | |
parent | 02bdb470498fb8b71f1bc582af2f55795a719c39 (diff) | |
parent | 828985dc6092808bbb1a3cb07f637e6da0dfeb65 (diff) | |
download | nextcloud-server-eba1d574cf946c215ca3fd3154ecc3bfe5742d2b.tar.gz nextcloud-server-eba1d574cf946c215ca3fd3154ecc3bfe5742d2b.zip |
Merge pull request #7134 from owncloud/issue/5794
Make google drive client secret and dropbox api secret a password field
-rwxr-xr-x | apps/files_external/lib/config.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 01d588b3721..48fc4dfe46e 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -61,7 +61,7 @@ class OC_Mount_Config { 'configuration' => array( 'configured' => '#configured', 'app_key' => 'App key', - 'app_secret' => 'App secret', + 'app_secret' => '*App secret', 'token' => '#token', 'token_secret' => '#token_secret'), 'custom' => 'dropbox'); @@ -80,7 +80,7 @@ class OC_Mount_Config { 'configuration' => array( 'configured' => '#configured', 'client_id' => 'Client ID', - 'client_secret' => 'Client secret', + 'client_secret' => '*Client secret', 'token' => '#token'), 'custom' => 'google'); |