diff options
author | bobzel <zzzman@gmail.com> | 2020-08-16 01:36:24 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-16 01:36:24 -0400 |
commit | 7044fda26b17c0dac007952fb146bc8307339dce (patch) | |
tree | 4e4e283d090c4eb97d9e1106ad47f768eb9f7698 | |
parent | ab45fb958e7dfd5828715249b7e2099d8df42592 (diff) |
added lastModified timestamps for all documents
-rw-r--r-- | src/client/documents/Documents.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/documents/Documents.ts b/src/client/documents/Documents.ts index e69c53260..d612f7b5c 100644 --- a/src/client/documents/Documents.ts +++ b/src/client/documents/Documents.ts @@ -565,6 +565,7 @@ export namespace Docs { if (!("creationDate" in protoProps)) { protoProps.creationDate = new DateField; + protoProps[`${fieldKey}-lastModified`] = new DateField; } protoProps.isPrototype = true; |