mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-05-11 16:16:57 +00:00
41 lines
992 B
TypeScript
41 lines
992 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { NotificationService } from '@/core/NotificationService.js';
|
|
|
|
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
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
private notificationService: NotificationService,
|
|
) {
|
|
super(meta, paramDef, async (ps, user, token) => {
|
|
this.notificationService.createNotification(user.id, 'app', {
|
|
appAccessTokenId: token ? token.id : null,
|
|
customBody: ps.body,
|
|
customHeader: ps.header,
|
|
customIcon: ps.icon,
|
|
});
|
|
});
|
|
}
|
|
}
|