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