We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0bbef3 commit 7274c30Copy full SHA for 7274c30
src/app/code/community/Zendesk/Zendesk/Helper/Data.php
@@ -120,7 +120,9 @@ public function getZendeskUnauthUrl()
120
{
121
$protocol = 'https://';
122
$domain = $this->getZendeskDomain();
123
- $route = '/access/unauthenticated';
+ //Zendesk will automatically redirect to login if user is not logged in
124
+ //previous URL followed to login page even if user has already logged in
125
+ $route = '/home';
126
127
return $protocol . $domain . $route;
128
}
0 commit comments