mirror of
https://github.com/nextcloud/server.git
synced 2024-11-14 20:36:50 +00:00
9836e9b164
Signed-off-by: provokateurin <kate@provokateurin.de>
36 lines
669 B
PHP
36 lines
669 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\AppFramework\Http\Events;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
/**
|
|
* Emitted before the rendering step of the login TemplateResponse.
|
|
*
|
|
* @since 28.0.0
|
|
*/
|
|
class BeforeLoginTemplateRenderedEvent extends Event {
|
|
/**
|
|
* @since 28.0.0
|
|
*/
|
|
public function __construct(
|
|
private TemplateResponse $response,
|
|
) {
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* @since 28.0.0
|
|
*/
|
|
public function getResponse(): TemplateResponse {
|
|
return $this->response;
|
|
}
|
|
}
|