ripunzel/src/methods/self.js

22 lines
396 B
JavaScript
Raw Normal View History

2024-09-11 03:16:58 +00:00
'use strict';
2024-09-11 03:16:58 +00:00
function self(host, post) {
console.log(post);
2024-09-11 03:16:58 +00:00
return {
album: null,
items: [{
id: post.id,
url: post.url,
title: post.title,
text: post.text,
datetime: post.datetime,
type: 'text/plain',
self: true,
2024-09-11 03:16:58 +00:00
original: post,
}]
2024-09-11 03:16:58 +00:00
};
}
module.exports = self;