19 lines
378 B
PHP
19 lines
378 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\BruteForceSettings;
|
|
|
|
class Config {
|
|
public const APPID = 'bruteForce';
|
|
public const ALLOWLIST_PREFIX = 'whitelist_';
|
|
public const COMMENT_SUFFIX = '_comment';
|
|
public const MAX_COMMENT_LENGTH = 1000;
|
|
|
|
}
|