diff options
author | Sheogorath | 2018-01-20 15:08:31 +0100 |
---|---|---|
committer | Sheogorath | 2018-01-20 15:16:53 +0100 |
commit | a7935a595a6d482aaefb5a3c9fa0600adf2d2c5b (patch) | |
tree | 15ff230007e15a6d1b08ba1c26b4a161a91252f8 /public/js/lib | |
parent | 40d1d757048b1eb51e45d4d29ad987739b478881 (diff) |
Allow more detailed configuration of upload mime types
Fixes #637
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
Diffstat (limited to 'public/js/lib')
-rw-r--r-- | public/js/lib/common/constant.ejs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/public/js/lib/common/constant.ejs b/public/js/lib/common/constant.ejs index e4a1cf0a..c0963635 100644 --- a/public/js/lib/common/constant.ejs +++ b/public/js/lib/common/constant.ejs @@ -3,6 +3,8 @@ window.urlpath = '<%- urlpath %>' window.debug = <%- debug %> window.version = '<%- version %>' +window.allowedUploadMimeTypes = <%- JSON.stringify(allowedUploadMimeTypes) %> + window.GOOGLE_API_KEY = '<%- GOOGLE_API_KEY %>' window.GOOGLE_CLIENT_ID = '<%- GOOGLE_CLIENT_ID %>' -window.DROPBOX_APP_KEY = '<%- DROPBOX_APP_KEY %>'
\ No newline at end of file +window.DROPBOX_APP_KEY = '<%- DROPBOX_APP_KEY %>' |