aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backends/cloud/box/boxstorage.cpp2
-rw-r--r--backends/cloud/dropbox/dropboxstorage.cpp2
-rw-r--r--backends/cloud/googledrive/googledrivestorage.cpp2
-rw-r--r--backends/cloud/onedrive/onedrivestorage.cpp2
4 files changed, 4 insertions, 4 deletions
diff --git a/backends/cloud/box/boxstorage.cpp b/backends/cloud/box/boxstorage.cpp
index 58a2541a74..7d67ba1676 100644
--- a/backends/cloud/box/boxstorage.cpp
+++ b/backends/cloud/box/boxstorage.cpp
@@ -47,7 +47,7 @@ namespace Box {
#define BOX_API_USERS_ME "https://api.box.com/2.0/users/me"
char *BoxStorage::KEY = nullptr; //can't use CloudConfig there yet, loading it on instance creation/auth
-char *BoxStorage::SECRET = nullptr; //TODO: hide these secrets somehow
+char *BoxStorage::SECRET = nullptr;
void BoxStorage::loadKeyAndSecret() {
#ifdef ENABLE_RELEASE
diff --git a/backends/cloud/dropbox/dropboxstorage.cpp b/backends/cloud/dropbox/dropboxstorage.cpp
index 41536fe0ea..789f6b497c 100644
--- a/backends/cloud/dropbox/dropboxstorage.cpp
+++ b/backends/cloud/dropbox/dropboxstorage.cpp
@@ -45,7 +45,7 @@ namespace Dropbox {
#define DROPBOX_API_FILES_DOWNLOAD "https://content.dropboxapi.com/2/files/download"
char *DropboxStorage::KEY = nullptr; //can't use CloudConfig there yet, loading it on instance creation/auth
-char *DropboxStorage::SECRET = nullptr; //TODO: hide these secrets somehow
+char *DropboxStorage::SECRET = nullptr;
void DropboxStorage::loadKeyAndSecret() {
#ifdef ENABLE_RELEASE
diff --git a/backends/cloud/googledrive/googledrivestorage.cpp b/backends/cloud/googledrive/googledrivestorage.cpp
index d876883185..789dfaf53a 100644
--- a/backends/cloud/googledrive/googledrivestorage.cpp
+++ b/backends/cloud/googledrive/googledrivestorage.cpp
@@ -47,7 +47,7 @@ namespace GoogleDrive {
#define GOOGLEDRIVE_API_ABOUT "https://www.googleapis.com/drive/v3/about?fields=storageQuota,user"
char *GoogleDriveStorage::KEY = nullptr; //can't use CloudConfig there yet, loading it on instance creation/auth
-char *GoogleDriveStorage::SECRET = nullptr; //TODO: hide these secrets somehow
+char *GoogleDriveStorage::SECRET = nullptr;
void GoogleDriveStorage::loadKeyAndSecret() {
#ifdef ENABLE_RELEASE
diff --git a/backends/cloud/onedrive/onedrivestorage.cpp b/backends/cloud/onedrive/onedrivestorage.cpp
index 458aaecf88..9fde2ed2c7 100644
--- a/backends/cloud/onedrive/onedrivestorage.cpp
+++ b/backends/cloud/onedrive/onedrivestorage.cpp
@@ -47,7 +47,7 @@ namespace OneDrive {
#define ONEDRIVE_API_SPECIAL_APPROOT "https://api.onedrive.com/v1.0/drive/special/approot"
char *OneDriveStorage::KEY = nullptr; //can't use CloudConfig there yet, loading it on instance creation/auth
-char *OneDriveStorage::SECRET = nullptr; //TODO: hide these secrets somehow
+char *OneDriveStorage::SECRET = nullptr;
void OneDriveStorage::loadKeyAndSecret() {
#ifdef ENABLE_RELEASE