This commit is contained in:
David Bomba 2021-04-08 21:08:29 +10:00
parent 47113da4fa
commit 8e327d3a75
4 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
5.1.40
5.1.41

View File

@ -81,7 +81,7 @@ class StoreClientRequest extends Request
{
$input = $this->all();
//@todo implement feature permissions for > 100 clients
//@todo implement feature permissions for > 50 clients
$settings = ClientSettings::defaults();

View File

@ -63,7 +63,7 @@ class StoreInvoiceRequest extends Request
protected function prepareForValidation()
{
$input = $this->all();
nlog($input);
$input = $this->decodePrimaryKeys($input);
$input['line_items'] = isset($input['line_items']) ? $this->cleanItems($input['line_items']) : [];

View File

@ -14,7 +14,7 @@ return [
'require_https' => env('REQUIRE_HTTPS', true),
'app_url' => rtrim(env('APP_URL', ''), '/'),
'app_domain' => env('APP_DOMAIN', ''),
'app_version' => '5.1.40',
'app_version' => '5.1.41',
'minimum_client_version' => '5.0.16',
'terms_version' => '1.0.1',
'api_secret' => env('API_SECRET', false),