1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Started core API route work

This commit is contained in:
Dan Brown
2019-12-28 14:58:07 +00:00
parent c055310507
commit 04137e7c98
8 changed files with 157 additions and 3 deletions

12
routes/api.php Normal file
View File

@ -0,0 +1,12 @@
<?php
/**
* Routes for the BookStack API.
*
* Routes have a uri prefix of /api/.
*/
// TODO - Authenticate middleware
Route::get('books', 'BooksApiController@index');