Skip to content

Instantly share code, notes, and snippets.

@kasramp

kasramp/index.js Secret

Created May 28, 2020 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kasramp/84b67d4db830944c622dc84eeb4b60ed to your computer and use it in GitHub Desktop.
Save kasramp/84b67d4db830944c622dc84eeb4b60ed to your computer and use it in GitHub Desktop.
router.get("/v1/users/:id", async (context) => {
if (context.params && context.params.id && !isNaN(parseInt(context.params.id))) {
const user = (await storage.getUserById(context.params.id))[0];
if (!user) {
context.response.status = 404;
context.response.body = { error: `User ${context.params.id} not found` };
} else {
context.response.body = user;
}
} else {
context.response.status = 400;
context.response.body = { error: "Id must be number" };
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment