This commit is contained in:
David Bomba 2024-10-12 19:57:42 +11:00
parent 2927611b4e
commit 61962471dc
3 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
5.10.34
5.10.35

View File

@ -647,7 +647,7 @@ class ExpenseController extends BaseController
$user = auth()->user();
foreach ($request->file("documents") as $file) {
ImportEDocument::dispatch($file->get(), $file->getClientOriginalName(), $request->file("documents")->getMimeType(), $user->company());
ImportEDocument::dispatch($file->get(), $file->getClientOriginalName(), $file->getMimeType(), $user->company());
}
return response()->json(['message' => 'Processing....'], 200);

View File

@ -17,8 +17,8 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
'app_version' => env('APP_VERSION', '5.10.34'),
'app_tag' => env('APP_TAG', '5.10.34'),
'app_version' => env('APP_VERSION', '5.10.35'),
'app_tag' => env('APP_TAG', '5.10.35'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),