Merge pull request #691 from SISheogorath/feature/upload

Allow more detailed configuration of upload mime types
This commit is contained in:
Christoph (Sheogorath) Kern 2018-01-23 12:10:33 +01:00 committed by GitHub
commit 584f1c5249
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 29 additions and 11 deletions

3
app.js
View file

@ -35,7 +35,8 @@ var data = {
version: config.version,
GOOGLE_API_KEY: config.google.clientSecret,
GOOGLE_CLIENT_ID: config.google.clientID,
DROPBOX_APP_KEY: config.dropbox.appKey
DROPBOX_APP_KEY: config.dropbox.appKey,
allowedUploadMimeTypes: config.allowedUploadMimeTypes
}
ejs.renderFile(constpath, data, {}, function (err, str) {