1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 19:22:35 +01:00
invoiceninja/Modules/Notes/Routes/api.php

19 lines
529 B
PHP
Raw Normal View History

<?php
use Illuminate\Http\Request;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
Route::middleware('auth:api')->get('/notes', function (Request $request) {
return $request->user();
});
*/