2020-03-28 10:07:41 +01:00
|
|
|
import $ from 'cafy';
|
|
|
|
import define from '../../define';
|
|
|
|
import { createNotification } from '../../../../services/create-notification';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['notifications'],
|
|
|
|
|
|
|
|
requireCredential: true as const,
|
|
|
|
|
|
|
|
kind: 'write:notifications',
|
|
|
|
|
|
|
|
params: {
|
|
|
|
body: {
|
|
|
|
validator: $.str
|
|
|
|
},
|
|
|
|
|
|
|
|
header: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
|
|
|
|
icon: {
|
|
|
|
validator: $.optional.nullable.str
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps, user, token) => {
|
|
|
|
createNotification(user.id, 'app', {
|
2020-03-29 03:49:43 +02:00
|
|
|
appAccessTokenId: token ? token.id : null,
|
2020-03-28 10:07:41 +01:00
|
|
|
customBody: ps.body,
|
|
|
|
customHeader: ps.header,
|
|
|
|
customIcon: ps.icon,
|
|
|
|
});
|
|
|
|
});
|