feat: remove file.isFileTypeAllowed

v1.18.x
Barış Soner Uşaklı 5 years ago
parent 4eae927d14
commit 2cdb935f1d

@ -53,11 +53,6 @@ file.base64ToLocal = async function (imageData, uploadPath) {
return uploadPath; return uploadPath;
}; };
file.isFileTypeAllowed = async function (path) {
winston.warn('[deprecated] file.isFileTypeAllowed is deprecated, use image.isFileTypeAllowed');
await require('./image').isFileTypeAllowed(path);
};
// https://stackoverflow.com/a/31205878/583363 // https://stackoverflow.com/a/31205878/583363
file.appendToFileName = function (filename, string) { file.appendToFileName = function (filename, string) {
const dotIndex = filename.lastIndexOf('.'); const dotIndex = filename.lastIndexOf('.');

@ -162,7 +162,7 @@ describe('Upload Controllers', function () {
}); });
it('should fail if file is not an image', function (done) { it('should fail if file is not an image', function (done) {
file.isFileTypeAllowed(path.join(__dirname, '../test/files/notanimage.png'), function (err) { image.isFileTypeAllowed(path.join(__dirname, '../test/files/notanimage.png'), function (err) {
assert.equal(err.message, 'Input file contains unsupported image format'); assert.equal(err.message, 'Input file contains unsupported image format');
done(); done();
}); });

Loading…
Cancel
Save