d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
24 lines
562 B
TypeScript
24 lines
562 B
TypeScript
import define from '../../define.js';
|
|
import { sendEmail } from '@/services/send-email.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
to: { type: 'string' },
|
|
subject: { type: 'string' },
|
|
text: { type: 'string' },
|
|
},
|
|
required: ['to', 'subject', 'text'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default define(meta, paramDef, async (ps) => {
|
|
await sendEmail(ps.to, ps.subject, ps.text, ps.text);
|
|
});
|