Redirecting to hamo.com
This commit is contained in:
31
api/controllers/users/signin.js
Normal file
31
api/controllers/users/signin.js
Normal file
@@ -0,0 +1,31 @@
|
||||
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" });
|
||||
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
Reference in New Issue
Block a user