IInitialStateExcludedCapability.php 420 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
  5. * SPDX-License-Identifier: AGPL-3.0-or-later
  6. */
  7. namespace OCP\Capabilities;
  8. /**
  9. * Indicate that a capability should not be injected in the initial state
  10. * of the page as it might be expensive to query and not useful for the
  11. * webui.
  12. *
  13. * @since 24.0.0
  14. */
  15. interface IInitialStateExcludedCapability {
  16. }