mizzkey/packages/backend/src/server/api/endpoints/notifications/create.ts
tamaina fcfb5ef0a3
Fix ajv (#8333)
* wip

* ✌️

* use ajv/dist/core

* revert try

* clean up
2022-02-20 13:15:40 +09:00

33 lines
739 B
TypeScript

import define from '../../define';
import { createNotification } from '@/services/create-notification';
export const meta = {
tags: ['notifications'],
requireCredential: true,
kind: 'write:notifications',
errors: {
},
} as const;
export const paramDef = {
type: 'object',
properties: {
body: { type: 'string' },
header: { type: 'string', nullable: true },
icon: { type: 'string', nullable: true },
},
required: ['body'],
} as const;
// eslint-disable-next-line import/no-default-export
export default define(meta, paramDef, async (ps, user, token) => {
createNotification(user.id, 'app', {
appAccessTokenId: token ? token.id : null,
customBody: ps.body,
customHeader: ps.header,
customIcon: ps.icon,
});
});