diff options
author | Christoph (Sheogorath) Kern | 2018-01-19 14:31:04 +0100 |
---|---|---|
committer | GitHub | 2018-01-19 14:31:04 +0100 |
commit | feb89f02e294204849f0dcfb22ccd4a79e16b7c4 (patch) | |
tree | 4dfdfdf21d5089a443548284561f08742e067327 /lib/config/environment.js | |
parent | d492070d3a3bb32c37cc90fcb3e96182a4f1edc9 (diff) | |
parent | 608008753f3631f473921f0940124f99be13b306 (diff) |
Merge pull request #684 from hackmdio/fixDropboxAppKey
Fix not passing app key correctly in dropbox config
⚠️ Dropbox ClientSecret was leaked ⚠️
Fixes #683
Diffstat (limited to '')
-rw-r--r-- | lib/config/environment.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/config/environment.js b/lib/config/environment.js index 27e63591..5a297382 100644 --- a/lib/config/environment.js +++ b/lib/config/environment.js @@ -56,7 +56,8 @@ module.exports = { }, dropbox: { clientID: process.env.HMD_DROPBOX_CLIENTID, - clientSecret: process.env.HMD_DROPBOX_CLIENTSECRET + clientSecret: process.env.HMD_DROPBOX_CLIENTSECRET, + appKey: process.env.HMD_DROPBOX_APPKEY }, google: { clientID: process.env.HMD_GOOGLE_CLIENTID, |