2021-08-19 14:55:45 +02:00
|
|
|
import define from '../../define';
|
|
|
|
import { createNotification } from '@/services/create-notification';
|
2020-03-28 10:07:41 +01:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['notifications'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2020-03-28 10:07:41 +01:00
|
|
|
|
|
|
|
kind: 'write:notifications',
|
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
errors: {
|
2020-03-28 10:07:41 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2020-03-28 10:07:41 +01:00
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
body: { type: 'string' },
|
|
|
|
header: { type: 'string', nullable: true },
|
|
|
|
icon: { type: 'string', nullable: true },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['body'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2020-03-28 10:07:41 +01:00
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps, user, token) => {
|
2020-03-28 10:07:41 +01:00
|
|
|
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,
|
|
|
|
});
|
|
|
|
});
|