2021-10-08 06:37:02 +02:00
|
|
|
import define from '../../define';
|
2021-11-07 12:16:01 +01:00
|
|
|
import { validateEmailForAccount } from '@/services/validate-email-for-account';
|
2021-10-08 06:37:02 +02:00
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
tags: ['users'],
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: false,
|
2021-10-08 06:37:02 +02:00
|
|
|
|
|
|
|
res: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-10-08 06:37:02 +02:00
|
|
|
properties: {
|
|
|
|
available: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'boolean',
|
|
|
|
optional: false, nullable: false,
|
2021-11-07 12:16:01 +01:00
|
|
|
},
|
|
|
|
reason: {
|
2022-01-18 14:27:10 +01:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: true,
|
2021-11-07 12:16:01 +01:00
|
|
|
},
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
|
|
|
},
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2021-10-08 06:37:02 +02:00
|
|
|
|
2022-02-19 06:05:32 +01:00
|
|
|
const paramDef = {
|
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
emailAddress: { type: 'string' },
|
|
|
|
},
|
|
|
|
required: ['emailAddress'],
|
|
|
|
} as const;
|
|
|
|
|
2022-01-02 18:12:50 +01:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-02-19 06:05:32 +01:00
|
|
|
export default define(meta, paramDef, async (ps) => {
|
2021-11-07 12:16:01 +01:00
|
|
|
return await validateEmailForAccount(ps.emailAddress);
|
2021-10-08 06:37:02 +02:00
|
|
|
});
|