diff -r a2342f26c9de -r b0b56e0f8c7f server/src/app/Http/routes.php --- a/server/src/app/Http/routes.php Fri Jan 15 15:27:56 2016 +0100 +++ b/server/src/app/Http/routes.php Fri Jan 15 15:35:00 2016 +0100 @@ -37,7 +37,9 @@ Route::group(['prefix' => 'api/v1'] , function() { Route::resource('documents', 'Api\DocumentController', - ['only' => ['index', 'show']]); + ['only' => ['index', 'show', 'update']]); Route::resource('viaf', 'Api\ViafController', ['only' => ['show']]); + Route::resource('lexvo', 'Api\LexvoController', + ['only' => ['show']]); });