Skip to content

Instantly share code, notes, and snippets.

@Raynos
Created August 23, 2011 22:47
Show Gist options
  • Save Raynos/1166820 to your computer and use it in GitHub Desktop.
Save Raynos/1166820 to your computer and use it in GitHub Desktop.
app.get("/blog/:postId/edit", [
middle.input.cleanseUrl,
authorized,
checkId,
middle.data.getPostById,
middle.output.renderPostEditForm
]);
// checkId could be a app.param("postId", checkId);
app.put("/blog/:postId", [
authorized,
checkId,
middle.input.validatePost,
getPostById,
middle.data.savePost,
middle.output.redirectToPost
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment