- Added Redirect controller to redirect from the link present in the email to

the page for viewing the message
This commit is contained in:
bison-paolo
2016-10-07 12:00:59 +02:00
parent b0459c6603
commit 1fed18dd9b
7 changed files with 95 additions and 43 deletions
@@ -105,23 +105,6 @@ class Message extends APIv1_Controller
}
}
/**
* @return void
*/
public function getRedirectByToken()
{
$token = $this->get('token');
if (isset($token))
{
redirect(CIS_ROOT);
}
else
{
$this->response();
}
}
/**
* @return void
*/