userbase icon indicating copy to clipboard operation
userbase copied to clipboard

Feature request: fetch individual item history

Open shamblesides opened this issue 5 years ago • 0 comments

Proposed usage:

userbase.itemHistory({ databaseName, itemId }).then(revisions => {
  for (const revision of revisions) {
    const { item, username, userDeleted, timestamp } = revision
    // maybe file stuff too? Not sure if old files are stored permanently
  }
})

Maybe would always be fetched from transaction log rather than the bundle.

shamblesides avatar Sep 10 '20 04:09 shamblesides