mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 11:53:08 +02:00
63df2c851e
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
44 lines
950 B
TypeScript
44 lines
950 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { EmailService } from '@/core/EmailService.js';
|
|
|
|
export const meta = {
|
|
tags: ['users'],
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
available: {
|
|
type: 'boolean',
|
|
optional: false, nullable: false,
|
|
},
|
|
reason: {
|
|
type: 'string',
|
|
optional: false, nullable: true,
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
emailAddress: { type: 'string' },
|
|
},
|
|
required: ['emailAddress'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
private emailService: EmailService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
return await this.emailService.validateEmailForAccount(ps.emailAddress);
|
|
});
|
|
}
|
|
}
|