Store password encrypted

This commit is contained in:
Ben
2018-10-03 13:56:53 +02:00
parent 91e0e33a04
commit ce917298ed
2 changed files with 5 additions and 4 deletions

View File

@@ -4,6 +4,7 @@
namespace FireflyIII\Support\FinTS;
use FireflyIII\Exceptions\FireflyException;
use Illuminate\Support\Facades\Crypt;
class FinTS
{
@@ -30,7 +31,7 @@ class FinTS
$config['fints_port'],
$config['fints_bank_code'],
$config['fints_username'],
$config['fints_password']
Crypt::decrypt($config['fints_password'])
);
}