mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
12 lines
174 B
PHP
12 lines
174 B
PHP
<?php
|
|
|
|
/**
|
|
* Routes for the BookStack API.
|
|
*
|
|
* Routes have a uri prefix of /api/.
|
|
*/
|
|
|
|
|
|
// TODO - Authenticate middleware
|
|
|
|
Route::get('books', 'BooksApiController@index'); |