2013-08-07 21:14:36 +03:00
|
|
|
<?php
|
2013-08-08 00:22:21 +03:00
|
|
|
/**
|
|
|
|
* ownCloud - Office App
|
|
|
|
*
|
|
|
|
* @author Victor Dubiniuk
|
|
|
|
* @copyright 2013 Victor Dubiniuk victor.dubiniuk@gmail.com
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
*/
|
2013-08-07 21:14:36 +03:00
|
|
|
|
|
|
|
$this->create('office_genesis', 'ajax/genesis/{es_id}')
|
|
|
|
->post()
|
|
|
|
->action('\OCA\Office\Genesis', 'serve')
|
|
|
|
;
|
|
|
|
$this->create('office_genesis', 'ajax/genesis/{es_id}')
|
|
|
|
->get()
|
|
|
|
->action('\OCA\Office\Genesis', 'serve')
|
|
|
|
;
|