Auto commit for release 'develop' on 2024-05-18

This commit is contained in:
github-actions
2024-05-18 06:49:29 +02:00
parent 822f609a22
commit a39f0e1891
12 changed files with 44 additions and 43 deletions

View File

@@ -57,6 +57,7 @@ class AccountController extends Controller
$this->repository->setUserGroup($userGroup);
$this->default = app('amount')->getDefaultCurrency();
$this->converter = app(ExchangeRateConverter::class);
return $next($request);
}
);

View File

@@ -96,7 +96,6 @@ class UniqueIban implements ValidationRule
$maxCounts = $this->getMaxOccurrences();
foreach ($maxCounts as $type => $max) {
// make sure to trim the value of $value so all spaces are removed.
$value = Steam::filterSpaces($value);

View File

@@ -140,6 +140,7 @@ trait ConvertsDataTypes
public function clearIban(?string $string): ?string
{
$string = $this->clearString($string);
return Steam::filterSpaces($string);
}

View File

@@ -682,7 +682,7 @@ class Steam
"\u{3000}", // ideographic space
"\u{FEFF}", // zero width no -break space
"\x20", // plain old normal space,
' '
' ',
];
// clear zalgo text

View File

@@ -117,7 +117,7 @@ return [
'expression_engine' => false,
// see cer.php for exchange rates feature flag.
],
'version' => 'develop/2024-05-16',
'version' => 'develop/2024-05-18',
'api_version' => '2.0.14',
'db_version' => 24,

View File

@@ -2157,7 +2157,7 @@ return [
'logout' => 'Desconectar',
'logout_other_sessions' => 'Sair de todas as outras sessões',
'toggleNavigation' => 'Alternar navegação',
'toggle_dropdown' => 'Toggle dropdown',
'toggle_dropdown' => 'Ativar/Desativar Menu Suspenso',
'searchPlaceholder' => 'Pesquisar...',
'version' => 'Versão',
'dashboard' => 'Painel de Controle',