Skip to content

Commit

Permalink
Allow empty array in config for uaa->clients
Browse files Browse the repository at this point in the history
  • Loading branch information
svkrieger committed Dec 3, 2024
1 parent 889a13a commit 39a4b2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cloud_controller/config_schemas/base/api_schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@ class ApiSchema < VCAP::Config
:client_timeout => Integer,
optional(:symmetric_secret) => String,
optional(:symmetric_secret2) => String,
optional(:clients) => [
optional(:clients) => enum([
{
'name' => String,
'id' => String,
'secret' => String
}
]
], NilClass)
},

optional(:allow_user_creation_by_org_manager) => bool,
Expand Down

0 comments on commit 39a4b2a

Please sign in to comment.