From 3cfaf1f1a0c2c2597c7ac81dee61d6c685443f26 Mon Sep 17 00:00:00 2001 From: Bel LaPointe <153096461+breel-render@users.noreply.github.com> Date: Fri, 14 Jun 2024 08:42:58 -0600 Subject: [PATCH] when adding w schedule then set ts to now --- pttodoer/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/pttodoer/src/main.rs b/pttodoer/src/main.rs index 47007ff..c06cd6a 100644 --- a/pttodoer/src/main.rs +++ b/pttodoer/src/main.rs @@ -350,6 +350,7 @@ impl Task { let mut t = Task::new(); t.set("is".to_string(), s); t.set("schedule".to_string(), schedule); + t.set("ts".to_string(), TS::now().to_string()); t }