openid: fix whitespace/indentation

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-11-18 14:52:52 +01:00
parent 271bbc10e9
commit 83f0ad5d8d

View File

@ -21,39 +21,39 @@ sub properties {
maxLength => 256, maxLength => 256,
}, },
"client-id" => { "client-id" => {
description => "OpenID Client ID", description => "OpenID Client ID",
type => 'string', type => 'string',
maxLength => 256, maxLength => 256,
}, },
"client-key" => { "client-key" => {
description => "OpenID Client Key", description => "OpenID Client Key",
type => 'string', type => 'string',
optional => 1, optional => 1,
maxLength => 256, maxLength => 256,
}, },
autocreate => { autocreate => {
description => "Automatically create users if they do not exist.", description => "Automatically create users if they do not exist.",
optional => 1, optional => 1,
type => 'boolean', type => 'boolean',
default => 0, default => 0,
}, },
"username-claim" => { "username-claim" => {
description => "OpenID claim used to generate the unique username.", description => "OpenID claim used to generate the unique username.",
type => 'string', type => 'string',
optional => 1, optional => 1,
}, },
}; };
} }
sub options { sub options {
return { return {
"issuer-url" => {}, "issuer-url" => {},
"client-id" => {}, "client-id" => {},
"client-key" => { optional => 1 }, "client-key" => { optional => 1 },
autocreate => { optional => 1 }, autocreate => { optional => 1 },
"username-claim" => { optional => 1, fixed => 1 }, "username-claim" => { optional => 1, fixed => 1 },
default => { optional => 1 }, default => { optional => 1 },
comment => { optional => 1 }, comment => { optional => 1 },
}; };
} }