]> BookStack Code Mirror - bookstack/blob - routes/api.php
Started core API route work
[bookstack] / routes / api.php
1 <?php
2
3 /**
4  * Routes for the BookStack API.
5  *
6  * Routes have a uri prefix of /api/.
7  */
8
9
10 // TODO - Authenticate middleware
11
12 Route::get('books', 'BooksApiController@index');