blt/api/controllers/account/view-edit-profile.js

27 lines
256 B
JavaScript
Raw Normal View History

module.exports = {
friendlyName: 'View edit profile',
description: 'Display "Edit profile" page.',
exits: {
success: {
viewTemplatePath: 'pages/account/edit-profile',
}
},
fn: async function () {
return {};
}
};