Skip to content

v0.4.1

Compare
Choose a tag to compare
@DorShakedMonday DorShakedMonday released this 21 Jun 13:16
· 27 commits to master since this release
ebcc123

This version introduces a new app level storage api.
The new api enables using the storage by instance-less apps as well.

What's changed

  • Add the following functions to the storage:
  • setItem (monday.storage.setItem(key, value))
  • getItem (monday.storage.getItem(key))
  • deleteItem (monday.storage.deleteItem(key))

All added functions will perform operations on the data on the app's level (not in the instance level)

Added by @DorShakedMonday in #103