the User Module provides a simple API to find objects from other users public stores
For example, the syntax to find all objects from user "Joe" looks like this:
hoodie.user("Joe").findAll().done( handleObjects )
extend hodie.store promise API
vanilla API syntax: hoodie.user('uuid1234').findAll()
hoodie.store decorations add custom methods to promises returned by hoodie.store methods like find, add or update. All methods return methods again that will be executed in the scope of the promise, but with access to the current hoodie instance
publish an object. If an array of properties passed, publish only these attributes and hide the remaining ones. If no properties passed, publish the entire object.
### unpublish
extend Hoodie
User