From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) by lore.proxmox.com (Postfix) with ESMTPS id ABD101FF3AE for ; Thu, 13 Jun 2024 14:52:48 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id DDAB930EEB; Thu, 13 Jun 2024 14:53:25 +0200 (CEST) From: Shannon Sterz To: pbs-devel@lists.proxmox.com Date: Thu, 13 Jun 2024 14:52:35 +0200 Message-Id: <20240613125236.236802-7-s.sterz@proxmox.com> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240613125236.236802-1-s.sterz@proxmox.com> References: <20240613125236.236802-1-s.sterz@proxmox.com> MIME-Version: 1.0 X-SPAM-LEVEL: Spam detection results: 0 AWL -0.049 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record T_SCC_BODY_TEXT_LINE -0.01 - Subject: [pbs-devel] [PATCH proxmox v2 6/7] access: move to flatten `User` into `UserWithToken` X-BeenThere: pbs-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox Backup Server development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: Proxmox Backup Server development discussion Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: pbs-devel-bounces@lists.proxmox.com Sender: "pbs-devel" Signed-off-by: Shannon Sterz --- proxmox-access-control/src/types.rs | 46 ++++------------------------- 1 file changed, 6 insertions(+), 40 deletions(-) diff --git a/proxmox-access-control/src/types.rs b/proxmox-access-control/src/types.rs index 9ed4e9cd..88b91a9f 100644 --- a/proxmox-access-control/src/types.rs +++ b/proxmox-access-control/src/types.rs @@ -40,32 +40,9 @@ pub const EMAIL_SCHEMA: Schema = StringSchema::new("E-Mail Address.") #[api( properties: { - userid: { - type: Userid, - }, - comment: { - optional: true, - schema: COMMENT_SCHEMA, - }, - enable: { - optional: true, - schema: ENABLE_USER_SCHEMA, - }, - expire: { - optional: true, - schema: EXPIRE_USER_SCHEMA, - }, - firstname: { - optional: true, - schema: FIRST_NAME_SCHEMA, - }, - lastname: { - schema: LAST_NAME_SCHEMA, - optional: true, - }, - email: { - schema: EMAIL_SCHEMA, - optional: true, + user: { + type: User, + flatten: true, }, tokens: { type: Array, @@ -91,19 +68,8 @@ pub const EMAIL_SCHEMA: Schema = StringSchema::new("E-Mail Address.") #[serde(rename_all = "kebab-case")] /// User properties with added list of ApiTokens pub struct UserWithTokens { - pub userid: Userid, - #[serde(skip_serializing_if = "Option::is_none")] - pub comment: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub enable: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub expire: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub firstname: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub lastname: Option, - #[serde(skip_serializing_if = "Option::is_none")] - pub email: Option, + #[serde(flatten)] + pub user: User, #[serde(skip_serializing_if = "Vec::is_empty", default)] pub tokens: Vec, #[serde(skip_serializing_if = "bool_is_false", default)] @@ -193,7 +159,7 @@ impl ApiToken { }, } )] -#[derive(Serialize, Deserialize, Updater, PartialEq, Eq)] +#[derive(Serialize, Deserialize, Updater, PartialEq, Eq, Clone)] /// User properties. pub struct User { #[updater(skip)] -- 2.39.2 _______________________________________________ pbs-devel mailing list pbs-devel@lists.proxmox.com https://lists.proxmox.com/cgi-bin/mailman/listinfo/pbs-devel