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