0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-03-13 07:53:51 +00:00
nextcloud_server/core/routes.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
432 B
PHP
Raw Normal View History

2012-08-12 14:52:36 +00:00
<?php
declare(strict_types=1);
2012-08-12 14:52:36 +00: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 14:52:36 +00:00
*/
2014-03-25 21:59:42 +00:00
/** @var OC\Route\Router $this */
// Core ajax actions
2012-10-05 07:42:36 +00:00
// Routing
2014-08-19 13:40:08 +00:00
$this->create('core_ajax_update', '/core/ajax/update.php')
->actionInclude('core/ajax/update.php');
$this->create('heartbeat', '/heartbeat')->get();