Add verify routine to installer.

This commit is contained in:
James Cole 2018-03-11 18:47:26 +01:00
parent 5776de7745
commit 5bc8f31c31
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E

View File

@ -100,4 +100,16 @@ class InstallController extends Controller
return response()->json(['OK']);
}
/**
* @return \Illuminate\Http\JsonResponse
*/
public function verify()
{
Log::debug('Am now calling verify database routine...');
Artisan::call('firefly:verify');
Log::debug(Artisan::output());
return response()->json(['OK']);
}
}