mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-26 10:38:00 +01:00
Change XXXConfigItem cannot be omitted when empty
Fixes #15206 Includes:StringConfigItem, BoolConfigItem, IntegerConfigItem Signed-off-by: stonezdj <stonezdj@gmail.com>
This commit is contained in:
parent
b789674ada
commit
a29bdd0b32
@ -8272,27 +8272,33 @@ definitions:
|
||||
properties:
|
||||
value:
|
||||
type: string
|
||||
x-omitempty: false
|
||||
description: The string value of current config item
|
||||
editable:
|
||||
type: boolean
|
||||
x-omitempty: false
|
||||
description: The configure item can be updated or not
|
||||
BoolConfigItem:
|
||||
type: object
|
||||
properties:
|
||||
value:
|
||||
type: boolean
|
||||
x-omitempty: false
|
||||
description: The boolean value of current config item
|
||||
editable:
|
||||
type: boolean
|
||||
x-omitempty: false
|
||||
description: The configure item can be updated or not
|
||||
IntegerConfigItem:
|
||||
type: object
|
||||
properties:
|
||||
value:
|
||||
type: integer
|
||||
x-omitempty: false
|
||||
description: The integer value of current config item
|
||||
editable:
|
||||
type: boolean
|
||||
x-omitempty: false
|
||||
description: The configure item can be updated or not
|
||||
ProjectMemberEntity:
|
||||
type: object
|
||||
|
Loading…
Reference in New Issue
Block a user