yawik / SimpleImport

Simple Job Import Module. Imports job openings into YAWIK
MIT License
0 stars 1 forks source link

TemplateValues cannot be unset/deleted #44

Closed TiSiE closed 4 years ago

TiSiE commented 5 years ago

If a job was imported with templateValues and some time later gets updated and some or all templateValues are not set or an empty string, the existing templateValues will remain.

TiSiE commented 5 years ago

for example:

first import

{
   templateValues: {
      "description": "blabla",
      "html": "<p>Fancy html</p>"
   }
}

update:

{
   templateValues: {
       "description": "",
   }
}

YAWIK-Database:

{
   "templateValues": {
        "description": "blabla",
        "html": "<p>Fancy html</p>"
    }
}