UNPKG

@appsemble/utils

Version:

Utility functions used in Appsemble internally

30 lines 906 B
export const pathItems = { post: { tags: ['main', 'auth', 'email'], description: 'Verify the email address of a registered user.', operationId: 'verifyUserEmail', requestBody: { description: 'The user account to register.', required: true, content: { 'application/json': { schema: { type: 'object', required: ['token'], properties: { token: { type: 'string', }, }, }, }, }, }, responses: { 200: { description: 'The account was successfully verified.', }, }, }, }; //# sourceMappingURL=verify.js.map