spee.ch/server/controllers/utils/getLocalFileRecord.js

16 lines
314 B
JavaScript
Raw Normal View History

2018-04-27 19:24:40 +02:00
const db = require('../../models');
const NO_FILE = 'NO_FILE';
const getLocalFileRecord = (claimId, name) => {
return db.File.findOne({where: {claimId, name}})
.then(file => {
if (!file) {
return NO_FILE;
}
return file.dataValues;
});
};
module.exports = getLocalFileRecord;