Browse Source

Catch step uploaded files.

pull/17/head
James Cole 4 years ago
parent
commit
69ae8e9e3b
No known key found for this signature in database GPG Key ID: BDE6667570EADBD5
  1. 6
      app/Http/Middleware/IsReadyForStep.php

6
app/Http/Middleware/IsReadyForStep.php

@ -397,6 +397,12 @@ trait IsReadyForStep
$route = route('003-upload.index');
Log::debug(sprintf('Return redirect to "%s"', $route));
return redirect($route);
case 'upload-files':
// assume files are uploaded, go to step 11 (connection selection)
// back to selection
$route = route('009-selection.index');
Log::debug(sprintf('Return redirect to "%s"', $route));
return redirect($route);
case 'nordigen-link':
// back to selection
$route = route('009-selection.index');

Loading…
Cancel
Save