560ec616 by Jeff Balicki

e

1 parent 14fecb6d
......@@ -95,7 +95,7 @@ class ApiController extends Controller
}
public function update($json)
public function update()
{
$apiCallId = new pdfModel();
$apiCallId = $apiCallId->addApiCall('1',$json);
......
......@@ -30,7 +30,7 @@ Route::group(array('prefix' => 'api/v1'), function($json)
});
Route::get('api/update', 'ApiController@getpdf');
Route::post('api/update', 'ApiController@update');
Route::get('fileentry/get/{filename}', [
'as' => 'getentry', 'uses' => 'FileEntryController@get']);
......