Last active
December 25, 2017 05:24
-
-
Save dusanstanojeviccs/1d09840f65d3729d0c4fc5766a3a2069 to your computer and use it in GitHub Desktop.
Book routes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Routes | |
| # This file defines all application routes (Higher priority routes first) | |
| # ~~~~ | |
| GET /books controllers.BookController.findAll() | |
| GET /books/:id controllers.BookController.findById(id: Integer) | |
| POST /books/:id controllers.BookController.create() | |
| PUT /books/:id controllers.BookController.update(id: Integer) | |
| DELETE /books/:id controllers.BookController.delete(id: Integer) | |
| # Map static resources from the /public folder to the /assets URL path | |
| GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment