UNPKG

pallies

Version:
18 lines (13 loc) 369 B
'use strict'; module.exports = { method: 'POST', path: '/forgot-password', options: { handler: async (request, h) => { const AuthService = h.services().authService; const { username } = request.payload; await AuthService.forgotPassword(username); return h.response().code(204); } } };