spee.ch/server/controllers/api/claim/get/createFileData.js
2018-04-27 10:24:40 -07:00

13 lines
242 B
JavaScript

module.exports = ({ name, claimId, outpoint, height, address, nsfw, contentType }) => {
return {
name,
claimId,
outpoint,
height,
address,
fileName: '',
filePath: '',
fileType: contentType,
nsfw,
};
};