2021-10-08 07:37:02 +03:00
|
|
|
import $ from 'cafy';
|
|
|
|
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'],
|
|
|
|
|
|
|
|
requireCredential: false as const,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
emailAddress: {
|
|
|
|
validator: $.str
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
res: {
|
|
|
|
type: 'object' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
|
|
|
properties: {
|
|
|
|
available: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
optional: false as const, nullable: false as const,
|
2021-11-07 13:16:01 +02:00
|
|
|
},
|
|
|
|
reason: {
|
|
|
|
type: 'string' as const,
|
|
|
|
optional: false as const, nullable: true as const,
|
|
|
|
},
|
2021-10-08 07:37:02 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export default define(meta, async (ps) => {
|
2021-11-07 13:16:01 +02:00
|
|
|
return await validateEmailForAccount(ps.emailAddress);
|
2021-10-08 07:37:02 +03:00
|
|
|
});
|