123456789101112131415161718192021222324252627 |
- module.exports = {
- friendlyName: 'View change password',
- description: 'Display "Change password" page.',
- exits: {
- success: {
- viewTemplatePath: 'pages/account/change-password'
- }
- },
- fn: async function (inputs, exits) {
- return exits.success();
- }
- };
|