mirror of
https://github.com/nextcloud/server.git
synced 2025-02-06 01:20:16 +00:00
cc1686dba9
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
18 lines
448 B
PHP
18 lines
448 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\TwoFactorBackupCodes\Settings;
|
|
|
|
use OCP\Authentication\TwoFactorAuth\IPersonalProviderSettings;
|
|
use OCP\Template;
|
|
|
|
class Personal implements IPersonalProviderSettings {
|
|
public function getBody(): Template {
|
|
return new Template('twofactor_backupcodes', 'personal');
|
|
}
|
|
}
|