1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 21:22:58 +01:00

Add in a switch for the dev url for fasttrack

This commit is contained in:
David Bomba 2022-09-05 20:14:03 +10:00
parent 1c95603b70
commit 9d1df2aa97

View File

@ -61,6 +61,9 @@ class Yodlee
public function getFastTrackUrl()
{
if(config('ninja.yodlee.dev_mode'))
return $this->dev_fast_track_url;
return $this->test_mode ? $this->test_fast_track_url : $this->production_track_url;
}