1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

Code formatting with prettier, change eslint config for the server

This commit is contained in:
Maksim Eltyshev 2019-11-05 18:01:42 +05:00
parent bc87c1d883
commit 7a3805e64c
191 changed files with 4321 additions and 2880 deletions

View file

@ -2,11 +2,11 @@ const bcrypt = require('bcrypt');
const Errors = {
EMAIL_NOT_EXIST: {
unauthorized: 'Email does not exist'
unauthorized: 'Email does not exist',
},
PASSWORD_NOT_VALID: {
unauthorized: 'Password is not valid'
}
unauthorized: 'Password is not valid',
},
};
module.exports = {
@ -14,23 +14,23 @@ module.exports = {
email: {
type: 'string',
required: true,
isEmail: true
isEmail: true,
},
password: {
type: 'string',
required: true
}
required: true,
},
},
exits: {
unauthorized: {
responseType: 'unauthorized'
}
responseType: 'unauthorized',
},
},
fn: async function(inputs, exits) {
async fn(inputs, exits) {
const user = await sails.helpers.getUser({
email: inputs.email.toLowerCase()
email: inputs.email.toLowerCase(),
});
if (!user) {
@ -42,7 +42,7 @@ module.exports = {
}
return exits.success({
item: sails.helpers.signToken(user.id)
item: sails.helpers.signToken(user.id),
});
}
},
};