From 83f0ad5d8d146e21fe21522aac4a6f8ea80b1f74 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 18 Nov 2021 14:52:52 +0100 Subject: [PATCH] openid: fix whitespace/indentation Signed-off-by: Thomas Lamprecht --- src/PVE/Auth/OpenId.pm | 44 +++++++++++++++++++++--------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/PVE/Auth/OpenId.pm b/src/PVE/Auth/OpenId.pm index 5101010..eb6c351 100755 --- a/src/PVE/Auth/OpenId.pm +++ b/src/PVE/Auth/OpenId.pm @@ -21,39 +21,39 @@ sub properties { maxLength => 256, }, "client-id" => { - description => "OpenID Client ID", - type => 'string', + description => "OpenID Client ID", + type => 'string', maxLength => 256, - }, - "client-key" => { + }, + "client-key" => { description => "OpenID Client Key", type => 'string', optional => 1, maxLength => 256, - }, - autocreate => { - description => "Automatically create users if they do not exist.", - optional => 1, - type => 'boolean', - default => 0, - }, - "username-claim" => { - description => "OpenID claim used to generate the unique username.", - type => 'string', - optional => 1, - }, + }, + autocreate => { + description => "Automatically create users if they do not exist.", + optional => 1, + type => 'boolean', + default => 0, + }, + "username-claim" => { + description => "OpenID claim used to generate the unique username.", + type => 'string', + optional => 1, + }, }; } sub options { return { "issuer-url" => {}, - "client-id" => {}, - "client-key" => { optional => 1 }, - autocreate => { optional => 1 }, - "username-claim" => { optional => 1, fixed => 1 }, - default => { optional => 1 }, - comment => { optional => 1 }, + "client-id" => {}, + "client-key" => { optional => 1 }, + autocreate => { optional => 1 }, + "username-claim" => { optional => 1, fixed => 1 }, + default => { optional => 1 }, + comment => { optional => 1 }, }; } -- 2.39.2