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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>2013-09-02 20:54:23 +0400
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2013-09-02 20:55:36 +0400
commita92c6659163261c66241ba83f536c6c7dce25574 (patch)
treee6faee691ee295bc5bcd9005b2a49aef3a18c514 /appinfo/routes.php
parent84c9eb786d8cb5ed4a8d0d479caf98dcec8e1dcf (diff)
Split controllers
Diffstat (limited to 'appinfo/routes.php')
-rw-r--r--appinfo/routes.php45
1 files changed, 27 insertions, 18 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index ff9e4ec7..46eaf083 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -9,67 +9,76 @@
* later.
*/
+/**
+ * Document routes
+ */
$this->create('documents_genesis', 'ajax/genesis/{es_id}')
->post()
- ->action('\OCA\Documents\Controller', 'serve')
+ ->action('\OCA\Documents\DocumentController', 'serve')
;
$this->create('documents_genesis', 'ajax/genesis/{es_id}')
->get()
- ->action('\OCA\Documents\Controller', 'serve')
+ ->action('\OCA\Documents\DocumentController', 'serve')
+;
+
+$this->create('documents_documents_list', 'ajax/documents/list')
+ ->get()
+ ->action('\OCA\Documents\DocumentController', 'listAll')
;
+
+/**
+ * Session routes
+ */
$this->create('documents_session_start', 'ajax/session/start')
->get()
- ->action('\OCA\Documents\Controller', 'startSession')
+ ->action('\OCA\Documents\SessionController', 'start')
;
$this->create('documents_session_start', 'ajax/session/start')
->post()
- ->action('\OCA\Documents\Controller', 'startSession')
-;
-
-$this->create('documents_documents_list', 'ajax/documents/list')
- ->get()
- ->action('\OCA\Documents\Controller', 'listDocuments')
+ ->action('\OCA\Documents\SessionController', 'start')
;
$this->create('documents_session_list', 'ajax/session/list')
->get()
- ->action('\OCA\Documents\Controller', 'listSessions')
+ ->action('\OCA\Documents\SessionController', 'listAll')
;
$this->create('documents_session_list', 'ajax/session/list')
->post()
- ->action('\OCA\Documents\Controller', 'listSessions')
+ ->action('\OCA\Documents\SessionController', 'listAll')
;
$this->create('documents_session_info', 'ajax/session/info')
->post()
- ->action('\OCA\Documents\Controller', 'sessionInfo')
+ ->action('\OCA\Documents\SessionController', 'info')
;
$this->create('documents_session_listhtml', 'ajax/session/listHtml')
->get()
- ->action('\OCA\Documents\Controller', 'listSessionsHtml')
+ ->action('\OCA\Documents\SessionController', 'listAllHtml')
;
$this->create('documents_session_listhtml', 'ajax/session/listHtml')
->post()
- ->action('\OCA\Documents\Controller', 'listSessionsHtml')
+ ->action('\OCA\Documents\SessionController', 'listAllHtml')
;
$this->create('documents_session_join', 'ajax/session/join/{es_id}')
->get()
- ->action('\OCA\Documents\Controller', 'joinSession')
+ ->action('\OCA\Documents\SessionController', 'join')
;
$this->create('documents_session_join', 'ajax/session/join/{es_id}')
->post()
- ->action('\OCA\Documents\Controller', 'joinSession')
+ ->action('\OCA\Documents\SessionController', 'join')
;
$this->create('documents_session_save', 'ajax/session/save')
->post()
- ->action('\OCA\Documents\Controller', 'save')
+ ->action('\OCA\Documents\SessionController', 'save')
;
-
+/**
+ * User routes
+ */
$this->create('documents_user_avatar', 'ajax/user/avatar')
->get()
->action('\OCA\Documents\UserController', 'sendAvatar')