update API doc

This commit is contained in:
Maycon Santos 2023-12-04 19:02:16 +01:00
parent 7a18dea766
commit 0d2db4b172
2 changed files with 2 additions and 2 deletions

View File

@ -75,7 +75,7 @@ components:
type: object
properties:
peer_approval_enabled:
description: Enables or disables peer approval globally. If enabled, all peers added will be in pending state until approved by an admin.
description: (Cloud only) Enables or disables peer approval globally. If enabled, all peers added will be in pending state until approved by an admin.
type: boolean
example: true
AccountRequest:

View File

@ -144,7 +144,7 @@ type Account struct {
// AccountExtraSettings defines model for AccountExtraSettings.
type AccountExtraSettings struct {
// PeerApprovalEnabled Enables or disables peer approval globally. If enabled, all peers added will be in pending state until approved by an admin.
// PeerApprovalEnabled (Cloud only) Enables or disables peer approval globally. If enabled, all peers added will be in pending state until approved by an admin.
PeerApprovalEnabled *bool `json:"peer_approval_enabled,omitempty"`
}