Skip to content

Instantly share code, notes, and snippets.

@adityawibisana
Last active January 21, 2022 08:33
Show Gist options
  • Save adityawibisana/275c378b707e1de46e55af463595deac to your computer and use it in GitHub Desktop.
Save adityawibisana/275c378b707e1de46e55af463595deac to your computer and use it in GitHub Desktop.
Medium Sails User Service
module.exports = {
handleError: (req) => {
if (!req.param("username")) {
return {
code: 1,
message: `'username' parameter is needed`
}
}
return null
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment