Skip to content

Instantly share code, notes, and snippets.

@abel0b
Created June 17, 2018 18:27
Show Gist options
  • Save abel0b/84a365e0a913826463cdff60f7649902 to your computer and use it in GitHub Desktop.
Save abel0b/84a365e0a913826463cdff60f7649902 to your computer and use it in GitHub Desktop.
express api
import express from "express"
import ArticleController from "controller/ArticleController"
const app = express()
app.get("/articles", ArticleController.index)
app.get("/articles/create", ArticleController.create)
app.get("/articles/:slug", ArticleController.show)
app.get("/articles/:slug/edit", ArticleController.edit)
app.patch("/articles/:slug", ArticleController.update)
app.delete("/articles/:slug", ArticleController.destroy)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment