obsidian-vikunja-plugin icon indicating copy to clipboard operation
obsidian-vikunja-plugin copied to clipboard

created date,done date, etc are not synced

Open zx900930 opened this issue 1 year ago • 1 comments

I have a single markdown file that contains tasks using Tasks Emoji Format for Dates

  • [ ] #task Has a created date ➕ 2023-04-13
  • [ ] #task Has a scheduled date ⏳ 2023-04-14
  • [ ] #task Has a start date 🛫 2023-04-15
  • [ ] #task Has a due date 📅 2023-04-16
  • [x] #task Has a done date ✅ 2023-04-17
  • [-] #task Has a cancelled date ❌ 2023-04-18

When I sync the tasks to vikunja, it only sync the due date. the start/created/done dates are not synced.

example task in obsidian - [x] #task example task 🛫 2024-11-21 ⏳ 2024-11-21 ✅ 2024-11-21

imported data in vikunja database(mariadb):

INSERT INTO vikunja.tasks (title,description,done,done_at,due_date,project_id,repeat_after,repeat_mode,priority,start_date,end_date,hex_color,percent_done,`index`,uid,cover_image_attachment_id,created,updated,created_by_id) VALUES
	 ('example task 🛫 2024-11-21 ⏳ 2024-11-21','',1,NULL,NULL,2,0,0,0,NULL,NULL,'',0.0,94,'756b6a4b-1aef-482e-9012-2167f2ae1520',0,'2024-11-28 08:10:10.000','2024-11-28 09:25:48.000',1);

zx900930 avatar Nov 28 '24 10:11 zx900930