diff options
author | Stephan Orbaugh <62374139+sorbaugh@users.noreply.github.com> | 2025-05-06 13:36:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-06 13:36:43 +0200 |
commit | 02de206a03d4b42385e05d86ee0fd22585a414ec (patch) | |
tree | 84438c6cfbf6472fb889c559064697d47aade051 /apps/files_external/lib/Lib/DefinitionParameter.php | |
parent | 53f71da4735cae0b6294278a84c4ce281f7e127c (diff) | |
parent | 2525d4b6ff4317c5ac4780257b7d924159ed163c (diff) | |
download | nextcloud-server-stable28.tar.gz nextcloud-server-stable28.zip |
Merge pull request #52647 from nextcloud/backport/52628/stable28stable28
[stable28] 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; |