Skip to content

Instantly share code, notes, and snippets.

@moonmaster9000
Created August 15, 2010 23:53
Show Gist options
  • Save moonmaster9000/526109 to your computer and use it in GitHub Desktop.
Save moonmaster9000/526109 to your computer and use it in GitHub Desktop.
-- blog posts admin actions
get ["admin", "posts"] = do ....
post ["admin", "posts"] = do ....
put ["admin", "posts", id] = do ....
delete ["admin", "posts", id] = do ....
-- blog frontend
get ["posts"] = do ....
get ["posts", year, month, day] = do ....
get ["posts", year, month, day, id] = do ....
post ["posts", year, month, day, id, "comments"] = do ....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment