@appsemble/utils
Version:
Utility functions used in Appsemble internally
31 lines • 997 B
JavaScript
export const pathItems = {
post: {
tags: ['main', 'auth', 'email'],
description: 'Resend the verification code for a registered email.',
operationId: 'resendUserEmailVerification',
requestBody: {
required: true,
content: {
'application/json': {
schema: {
type: 'object',
required: ['email'],
properties: {
email: {
type: 'string',
format: 'email',
},
},
},
},
},
},
responses: {
204: {
description: 'The verification email was sent if an account was found in the database.',
},
},
security: [{ studio: [] }],
},
};
//# sourceMappingURL=resendVerification.js.map