2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-02-16 08:09:41 -06:00
|
|
|
import { Injectable } from '@nestjs/common';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { EmailService } from '@/core/EmailService.js';
|
2019-07-04 07:07:02 -05:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2019-07-04 07:07:02 -05:00
|
|
|
requireModerator: true,
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2019-07-04 07:07:02 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
to: { type: 'string' },
|
|
|
|
subject: { type: 'string' },
|
|
|
|
text: { type: 'string' },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['to', 'subject', 'text'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2019-07-04 07:07:02 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
private emailService: EmailService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
await this.emailService.sendEmail(ps.to, ps.subject, ps.text, ps.text);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|