mirror of
https://github.com/misskey-dev/misskey.git
synced 2025-01-19 02:11:08 +09:00
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', {});
|
||
|
});
|
||
|
}
|
||
|
}
|