Files
therinaldos.com/wedding-pics/apps/logreader/appinfo/routes.php
T
david ef1ff240d4
Build & Deploy to DigitalOcean Space / build (push) Failing after 2m38s
migrate therinaldos.com data
2024-05-05 15:50:45 -04:00

20 lines
630 B
PHP

<?php
/**
* Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
/** @var $this OC\Route\Router */
return ['routes' => [
// page
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
['name' => 'log#get', 'url' => '/api/log', 'verb' => 'GET'],
['name' => 'log#poll', 'url' => '/api/poll', 'verb' => 'GET'],
// app settings
['name' => 'settings#getAppConfig', 'url' => '/api/settings', 'verb' => 'GET'],
['name' => 'settings#updateAppConfig', 'url' => '/api/settings', 'verb' => 'PUT']
]];