view-change-password.js 290 B

123456789101112131415161718192021222324252627
  1. module.exports = {
  2. friendlyName: 'View change password',
  3. description: 'Display "Change password" page.',
  4. exits: {
  5. success: {
  6. viewTemplatePath: 'pages/account/change-password'
  7. }
  8. },
  9. fn: async function (inputs, exits) {
  10. return exits.success();
  11. }
  12. };