Skip to content
This repository was archived by the owner on Feb 8, 2024. It is now read-only.

v0.9.0 🎈

Compare
Choose a tag to compare
@sergeysova sergeysova released this 01 Jul 01:14
· 85 commits to master since this release
v0.9.0
22a105d

Breaking changes

Features

createRest(root => {
  root.resources('users', UsersController)
})
// GET /users             -> index()
// POST /users            -> create()
// GET /users/:userId     -> read()
// PUT /users/:userId     -> update()
// PATCH /users/:userId   -> patch()
// DELETE /users/:userId  -> destroy()

Other changes