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

14 lines
242 B
JavaScript
Raw Normal View History

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