Skip to content

Commit bb49a0a

Browse files
authored
Merge pull request #141 from docusign/bugfix-fixing-quickstart-configuration
Added a redirect to authorization for php launcher
2 parents 5f9214f + dbc26f9 commit bb49a0a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Services/RouterService.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ public function router(): void
235235
} else {
236236
header('Location: ' . $GLOBALS['app_url'] . '/index.php?page=eg001');
237237
}
238+
} elseif ($GLOBALS['DS_CONFIG']['quickstart'] == 'true' && !isset($_SESSION['beenHere'])) {
239+
header('Location: ' . $GLOBALS['app_url'] . 'index.php?page=' . BaseController::LOGIN_REDIRECT);
238240
} elseif (isset($_SESSION['userflow_example_43'])) {
239241
unset($_SESSION['userflow_example_43']);
240242
$page = 'eg043/EnvelopesListStatus';

0 commit comments

Comments
 (0)