updated model to add host data #322
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
const logger = require('winston');
|
||||
const { returnShortId } = require('../helpers/sequelizeHelpers.js');
|
||||
const { claim } = require('../config/speechConfig.js');
|
||||
const { claim, site } = require('../config/speechConfig.js');
|
||||
const { defaultThumbnail } = claim;
|
||||
|
||||
function determineFileExtensionFromContentType (contentType) {
|
||||
|
@ -31,6 +31,7 @@ function prepareClaimData (claim) {
|
|||
// logger.debug('preparing claim data based on resolved data:', claim);
|
||||
claim['thumbnail'] = determineThumbnail(claim.thumbnail, defaultThumbnail);
|
||||
claim['fileExt'] = determineFileExtensionFromContentType(claim.contentType);
|
||||
claim['host'] = site.host;
|
||||
return claim;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue