Found via #249, it would help to configure handling of timestamps (created and modified) per object type:
"ignore" or false (no timestamps are store and the fields are filtered out)
"allow" (fields can be written like normal fields only in bulk import?)
"auto" or true (fields are set automatically and filtered out when tried to write, expect for admin/bulk)
Note that bulk import via CLI is different: it should be allowed to set them, also if "auto" is set. Maybe make this default for bulk mode but disallow bulk mode for normal users? This could be the default:
"bulk": false,
"bulk": true,
"bulk": { "ips": ["localhost"] },
Bulk import/upload is not used by current instances anyway so disabling it by default should be ok.
Found via #249, it would help to configure handling of timestamps (
createdandmodified) per object type:"ignore"orfalse(no timestamps are store and the fields are filtered out)"allow"(fields can be written like normal fields only in bulk import?)"auto"ortrue(fields are set automatically and filtered out when tried to write, expect for admin/bulk)Note that bulk import via CLI is different: it should be allowed to set them, also if
"auto"is set. Maybe make this default for bulk mode but disallow bulk mode for normal users? This could be the default:Bulk import/upload is not used by current instances anyway so disabling it by default should be ok.