spee.ch/server/controllers/utils/getLocalFileRecord.js
2018-04-27 10:24:40 -07:00

15 lines
314 B
JavaScript

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;