aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/lib/Event/LoadAdditionalScriptsEvent.php
blob: d1cf7f4016ef1167444a3e6e302f58e0ae89d083 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\Files\Event;

use OCP\EventDispatcher\Event;

/**
 * This event is triggered when the files app is rendered.
 *
 * @since 17.0.0
 */
class LoadAdditionalScriptsEvent extends Event {
}