diff options
author | Stephan Orbaugh <62374139+sorbaugh@users.noreply.github.com> | 2025-05-06 14:47:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-06 14:47:32 +0200 |
commit | b077920c13ed28997095cf85f1f190e9b8ace6b6 (patch) | |
tree | ddad3f72bab2c0f3813adbd2993cf9cb9bce6f7e /apps/files_external/lib/Lib/DefinitionParameter.php | |
parent | ca6f59536763d635adb4d9496b734b6e017b489e (diff) | |
parent | c4a3fcbf17e821af78df3f1d906554c98e94e2dd (diff) | |
download | nextcloud-server-stable27.tar.gz nextcloud-server-stable27.zip |
Merge pull request #52648 from nextcloud/backport/52628/stable27stable27
[stable27] fix(files_external): Mark password fields for LoginCredentials and SessionCredentials as hidden and optional
Diffstat (limited to 'apps/files_external/lib/Lib/DefinitionParameter.php')
-rw-r--r-- | apps/files_external/lib/Lib/DefinitionParameter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Lib/DefinitionParameter.php b/apps/files_external/lib/Lib/DefinitionParameter.php index ce0a37b4e9b..22488b9226c 100644 --- a/apps/files_external/lib/Lib/DefinitionParameter.php +++ b/apps/files_external/lib/Lib/DefinitionParameter.php @@ -35,12 +35,12 @@ class DefinitionParameter implements \JsonSerializable { public const VALUE_TEXT = 0; public const VALUE_BOOLEAN = 1; public const VALUE_PASSWORD = 2; - public const VALUE_HIDDEN = 3; /** Flag constants */ public const FLAG_NONE = 0; public const FLAG_OPTIONAL = 1; public const FLAG_USER_PROVIDED = 2; + public const FLAG_HIDDEN = 4; /** @var string name of parameter */ private string $name; |