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