blob: ca514c56b56674c21087b99aa4dc8bc4cbd789af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import config from '@/config/index';
import { Emoji } from '@/models/entities/emoji';
export default (emoji: Emoji) => ({
id: `${config.url}/emojis/${emoji.name}`,
type: 'Emoji',
name: `:${emoji.name}:`,
updated: emoji.updatedAt != null ? emoji.updatedAt.toISOString() : new Date().toISOString,
icon: {
type: 'Image',
mediaType: emoji.type || 'image/png',
url: emoji.url
}
});
|