v5.10.35
This commit is contained in:
parent
2927611b4e
commit
61962471dc
|
|
@ -1 +1 @@
|
||||||
5.10.34
|
5.10.35
|
||||||
|
|
@ -647,7 +647,7 @@ class ExpenseController extends BaseController
|
||||||
$user = auth()->user();
|
$user = auth()->user();
|
||||||
|
|
||||||
foreach ($request->file("documents") as $file) {
|
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);
|
return response()->json(['message' => 'Processing....'], 200);
|
||||||
|
|
|
||||||
|
|
@ -17,8 +17,8 @@ return [
|
||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||||
'app_version' => env('APP_VERSION', '5.10.34'),
|
'app_version' => env('APP_VERSION', '5.10.35'),
|
||||||
'app_tag' => env('APP_TAG', '5.10.34'),
|
'app_tag' => env('APP_TAG', '5.10.35'),
|
||||||
'minimum_client_version' => '5.0.16',
|
'minimum_client_version' => '5.0.16',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', false),
|
'api_secret' => env('API_SECRET', false),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue