32 lines
315 B
JavaScript
32 lines
315 B
JavaScript
|
|
module.exports = {
|
||
|
|
|
||
|
|
|
||
|
|
friendlyName: 'Signin',
|
||
|
|
|
||
|
|
|
||
|
|
description: 'Signin users.',
|
||
|
|
|
||
|
|
|
||
|
|
inputs: {
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
exits: {
|
||
|
|
success: {
|
||
|
|
responseType: 'view',
|
||
|
|
viewTemplatePath: 'pages/users/signin'
|
||
|
|
}
|
||
|
|
|
||
|
|
},
|
||
|
|
|
||
|
|
|
||
|
|
fn: async function (inputs, exits) {
|
||
|
|
|
||
|
|
return exits.success({ url: "//hamo.com" });
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
};
|