mirror of
https://git.proxmox.com/git/proxmox
synced 2025-05-02 16:28:14 +00:00
Option<Vec<>> -> Vec<>
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
53416e358f
commit
d07e4fdb9a
@ -57,8 +57,8 @@ pub struct Meta {
|
||||
pub website: Option<String>,
|
||||
|
||||
/// List of hostnames used by the CA, intended for the use with caa dns records
|
||||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
pub caa_identities: Option<Vec<String>>,
|
||||
#[serde(default, skip_serializing_if = "Vec::is_empty")]
|
||||
pub caa_identities: Vec<String>,
|
||||
}
|
||||
|
||||
impl Directory {
|
||||
|
Loading…
Reference in New Issue
Block a user