prevent locking upload response; show processing status on upload screen

This commit is contained in:
Bilal Catic
2019-07-25 14:40:33 +02:00
parent 7f3030960e
commit 8053093c0a
13 changed files with 312 additions and 86 deletions

11
models/processing.js Normal file
View File

@@ -0,0 +1,11 @@
'use strict';
module.exports = (sequelize, DataTypes) => {
const processing = sequelize.define('processing', {
processing: DataTypes.BOOLEAN,
}, {});
processing.associate = function(models) {
// associations can be defined here
};
return processing;
};