2019-02-04 02:54:56 -05:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2019-02-04 02:54:56 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2019-02-04 02:54:56 -05:00
|
|
|
*/
|
|
|
|
|
namespace OCP\AppFramework\Http;
|
|
|
|
|
|
2024-12-16 10:20:48 -05:00
|
|
|
use OCP\AppFramework\Http;
|
|
|
|
|
|
2019-02-04 02:54:56 -05:00
|
|
|
/**
|
|
|
|
|
* A template response that does not emit the loadAdditionalScripts events.
|
|
|
|
|
*
|
|
|
|
|
* This is useful for pages that are authenticated but do not yet show the
|
|
|
|
|
* full nextcloud UI. Like the 2FA page, or the grant page in the login flow.
|
|
|
|
|
*
|
|
|
|
|
* @since 16.0.0
|
2024-12-16 10:20:48 -05:00
|
|
|
* @template S of Http::STATUS_*
|
2023-06-14 02:56:42 -04:00
|
|
|
* @template H of array<string, mixed>
|
2024-12-16 10:20:48 -05:00
|
|
|
* @template-extends TemplateResponse<Http::STATUS_*, array<string, mixed>>
|
2019-02-04 02:54:56 -05:00
|
|
|
*/
|
|
|
|
|
class StandaloneTemplateResponse extends TemplateResponse {
|
|
|
|
|
}
|