summaryrefslogtreecommitdiffstats
path: root/core/routes.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/routes.php')
-rw-r--r--core/routes.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/core/routes.php b/core/routes.php
index 5d61d58e037..5243691df47 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -82,6 +82,12 @@ $this->create('files.viewcontroller.showFile', '/f/{fileid}')->action(function($
$app->dispatch('ViewController', 'index');
});
+// Call routes
+$this->create('spreed.pagecontroller.showCall', '/call/{token}')->action(function($urlParams) {
+ $app = new \OCA\Spreed\AppInfo\Application($urlParams);
+ $app->dispatch('PageController', 'index');
+});
+
// Sharing routes
$this->create('files_sharing.sharecontroller.showShare', '/s/{token}')->action(function($urlParams) {
$app = new \OCA\Files_Sharing\AppInfo\Application($urlParams);