Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2014-08-19 17:54:06 +0400
committerLukas Reschke <lukas@owncloud.com>2014-08-19 17:54:06 +0400
commit7dcad4cf444bb325ba8ff81307b300d8dfb8f57d (patch)
treeb2cd26e574b3007824a5be7936329a328e9d3abe /impress
parent88b57ce475f0782c77dc6e0409ee5442e1f83f33 (diff)
Add routing to impress
Diffstat (limited to 'impress')
-rw-r--r--impress/appinfo/routes.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/impress/appinfo/routes.php b/impress/appinfo/routes.php
new file mode 100644
index 000000000..44d29a0cb
--- /dev/null
+++ b/impress/appinfo/routes.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Copyright (c) 2014, Lukas Reschke <lukas@owncloud.com>
+ * This file is licensed under the Affero General Public License version 3 or later.
+ * See the COPYING-README file.
+ */
+
+/** @var $this \OCP\Route\IRouter */
+$this->create('impress_index', '/')
+ ->actionInclude('impress/index.php');
+$this->create('impress_documentation', 'documentation.php')
+ ->actionInclude('impress/documentation.php');
+$this->create('impress_player', 'player.php')
+ ->actionInclude('impress/player.php');