BookStack/routes/api.php

12 lines
174 B
PHP
Raw Normal View History

2019-12-28 09:58:07 -05:00
<?php
/**
* Routes for the BookStack API.
*
* Routes have a uri prefix of /api/.
*/
// TODO - Authenticate middleware
Route::get('books', 'BooksApiController@index');