CLOUD: Minor TODO fix
This commit is contained in:
parent
6dd10f3a68
commit
0b97aff866
4 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue