Mark "Talk" active on /call/token URLs
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
f7732ace10
commit
c17d86c081
1 changed files with 6 additions and 0 deletions
|
@ -121,6 +121,8 @@ class SecurityMiddleware extends Middleware {
|
|||
* @param Controller $controller the controller
|
||||
* @param string $methodName the name of the method
|
||||
* @throws SecurityException when a security check fails
|
||||
*
|
||||
* @suppress PhanUndeclaredClassConstant
|
||||
*/
|
||||
public function beforeController($controller, $methodName) {
|
||||
|
||||
|
@ -128,6 +130,10 @@ class SecurityMiddleware extends Middleware {
|
|||
// for normal HTML requests and not for AJAX requests
|
||||
$this->navigationManager->setActiveEntry($this->appName);
|
||||
|
||||
if ($controller === \OCA\Spreed\Controller\PageController::class && $methodName === 'showCall') {
|
||||
$this->navigationManager->setActiveEntry('spreed');
|
||||
}
|
||||
|
||||
// security checks
|
||||
$isPublicPage = $this->reflector->hasAnnotation('PublicPage');
|
||||
if(!$isPublicPage) {
|
||||
|
|
Loading…
Reference in a new issue