1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 05:02:36 +01:00
This commit is contained in:
David Bomba 2023-12-12 17:27:55 +11:00
parent deffec538b
commit f25af382a5
3 changed files with 13 additions and 3 deletions

View File

@ -1 +1 @@
5.7.61
5.7.62

View File

@ -40,4 +40,14 @@ class ImportRequest extends Request
'bank_integration_id' => 'bail|required_with:column_map.bank_transaction|min:2'
];
}
public function prepareForValidation()
{
$input = $this->all();
if(!isset($input['column_map']['bank_transaction']) && array_key_exists('bank_integration_id',$input))
unset($input['bank_integration_id']);
$this->replace($input);
}
}

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.7.61'),
'app_tag' => env('APP_TAG', '5.7.61'),
'app_version' => env('APP_VERSION', '5.7.62'),
'app_tag' => env('APP_TAG', '5.7.62'),
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),