mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-18 02:01:08 +09:00
cd6428715e
* (add) Notification test * Update Changelog * (add) backend, frontend impl * globalEventの名前を明確にする * Run API Extractor
34 lines
824 B
TypeScript
34 lines
824 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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',
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {},
|
|
required: [],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
private notificationService: NotificationService,
|
|
) {
|
|
super(meta, paramDef, async (ps, user) => {
|
|
this.notificationService.createNotification(user.id, 'test', {});
|
|
});
|
|
}
|
|
}
|