2012-08-12 16:52:36 +02:00
|
|
|
<?php
|
2021-04-26 12:44:37 +02:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2012-08-12 16:52:36 +02:00
|
|
|
/**
|
2024-05-27 10:08:53 +02:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2012-2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2012-08-12 16:52:36 +02:00
|
|
|
*/
|
2021-10-14 08:19:40 +00:00
|
|
|
|
2014-03-25 22:59:42 +01:00
|
|
|
/** @var OC\Route\Router $this */
|
2012-10-02 21:57:51 +02:00
|
|
|
// Core ajax actions
|
2012-10-05 09:42:36 +02:00
|
|
|
// Routing
|
2014-08-19 15:40:08 +02:00
|
|
|
$this->create('core_ajax_update', '/core/ajax/update.php')
|
|
|
|
->actionInclude('core/ajax/update.php');
|
2024-05-07 19:24:38 -04:00
|
|
|
|
|
|
|
$this->create('heartbeat', '/heartbeat')->get();
|