mirror of
https://git.proxmox.com/git/proxmox
synced 2025-04-30 02:38:03 +00:00
notify: fix dummy user schema property ordering
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
0f1b84e93c
commit
d38ce91384
@ -20,8 +20,8 @@ const DUMMY_EMAIL_SCHEMA: Schema = StringSchema::new("dummy email").schema();
|
|||||||
const DUMMY_USER_SCHEMA: ObjectSchema = ObjectSchema::new(
|
const DUMMY_USER_SCHEMA: ObjectSchema = ObjectSchema::new(
|
||||||
"minimal PBS user",
|
"minimal PBS user",
|
||||||
&[
|
&[
|
||||||
("userid", false, &DUMMY_ID_SCHEMA),
|
|
||||||
("email", true, &DUMMY_EMAIL_SCHEMA),
|
("email", true, &DUMMY_EMAIL_SCHEMA),
|
||||||
|
("userid", false, &DUMMY_ID_SCHEMA),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
.additional_properties(true);
|
.additional_properties(true);
|
||||||
|
Loading…
Reference in New Issue
Block a user