server/src/app/Http/routes.php
changeset 28 b0b56e0f8c7f
parent 23 037687868bc4
child 107 16e1473a6a99
--- 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']]);
 });