spee.ch/server/controllers/api/claim/get/createFileData.js

16 lines
282 B
JavaScript
Raw Normal View History

2018-07-26 02:21:02 +02:00
const createFileData = ({ name, claimId, outpoint, height, address, nsfw, contentType }) => {
2018-04-27 19:24:40 +02:00
return {
name,
claimId,
outpoint,
height,
address,
fileName: '',
filePath: '',
fileType: contentType,
nsfw,
};
};
2018-07-26 02:21:02 +02:00
module.exports = createFileData;