From de4c65786806944aa6d0ebfdf06b5d85e3763068 Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Wed, 1 May 2024 23:22:19 -0700 Subject: [PATCH] remove updated_at from ResourceToml --- bin/core/src/api/read/toml.rs | 1 - client/core/rs/src/entities/toml.rs | 3 --- 2 files changed, 4 deletions(-) diff --git a/bin/core/src/api/read/toml.rs b/bin/core/src/api/read/toml.rs index a1eeedd71..b8965892a 100644 --- a/bin/core/src/api/read/toml.rs +++ b/bin/core/src/api/read/toml.rs @@ -443,6 +443,5 @@ where .collect(), description: resource.description, config: resource.config.into(), - updated_at: 0, } } diff --git a/client/core/rs/src/entities/toml.rs b/client/core/rs/src/entities/toml.rs index 785c6cf88..15121ac5d 100644 --- a/client/core/rs/src/entities/toml.rs +++ b/client/core/rs/src/entities/toml.rs @@ -76,9 +76,6 @@ pub struct ResourceToml { #[serde(default)] pub description: String, - #[serde(default)] - pub updated_at: i64, - /// Tag ids or names #[serde(default)] pub tags: Vec,