diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-02-07 18:12:01 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-02-07 18:12:01 +0100 |
commit | 828985dc6092808bbb1a3cb07f637e6da0dfeb65 (patch) | |
tree | 4f31f51f9419ec27a3ee494bee25c0ca380bcdd6 /apps | |
parent | 60cba9962da352d96489e4eb4110612cac49966a (diff) | |
download | nextcloud-server-828985dc6092808bbb1a3cb07f637e6da0dfeb65.tar.gz nextcloud-server-828985dc6092808bbb1a3cb07f637e6da0dfeb65.zip |
Make google drive client secret and dropbox api secret a password field
Fix issue #5794
Diffstat (limited to 'apps')
-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'); |