mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 21:43:09 +02:00
38 lines
648 B
TypeScript
38 lines
648 B
TypeScript
|
import $ from 'cafy';
|
||
|
import define from '../../define';
|
||
|
import { UserProfiles } from '@/models/index';
|
||
|
|
||
|
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,
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default define(meta, async (ps) => {
|
||
|
const exist = await UserProfiles.count({
|
||
|
emailVerified: true,
|
||
|
email: ps.emailAddress,
|
||
|
});
|
||
|
|
||
|
return {
|
||
|
available: exist === 0
|
||
|
};
|
||
|
});
|