mirror of
https://github.com/wekan/wekan.git
synced 2025-12-18 08:20:12 +01:00
Fixed Non-ASCII attachment filename will crash when downloading.
Thanks to xet7 ! Fixes #2759
This commit is contained in:
parent
843ff8eaaa
commit
c2da477735
277 changed files with 30568 additions and 52 deletions
31
packages/wekan-cfs-http-methods/package.js
Normal file
31
packages/wekan-cfs-http-methods/package.js
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
Package.describe({
|
||||
git: 'https://github.com/zcfs/Meteor-http-methods.git',
|
||||
name: 'wekan-cfs-http-methods',
|
||||
version: '0.0.32',
|
||||
summary: 'Adds HTTP.methods RESTful'
|
||||
});
|
||||
|
||||
Package.onUse(function(api) {
|
||||
api.versionsFrom('1.0');
|
||||
|
||||
api.use(['webapp', 'underscore', 'ejson'], 'server');
|
||||
|
||||
api.use('http', { weak: true });
|
||||
|
||||
api.export && api.export('HTTP');
|
||||
|
||||
api.export && api.export('_methodHTTP', { testOnly: true });
|
||||
|
||||
api.addFiles('http.methods.client.api.js', 'client');
|
||||
api.addFiles('http.methods.server.api.js', 'server');
|
||||
|
||||
});
|
||||
|
||||
Package.onTest(function (api) {
|
||||
api.use('wekan-cfs-http-methods', ['server']);
|
||||
api.use('test-helpers', 'server');
|
||||
api.use(['tinytest', 'underscore', 'ejson', 'ordered-dict',
|
||||
'random', 'deps']);
|
||||
|
||||
api.addFiles('http.methods.tests.js', 'server');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue