Skip to content

v0.0.5

Latest
Compare
Choose a tag to compare
@PhilippSpo PhilippSpo released this 14 Sep 21:06
· 16 commits to master since this release

Add support for encrypting the profile of a Meteor.users document.
You can encrypt the users collection just like any other collection like so:

// define fields to be encrypted
var fields = ['profile.test'];
// init encryption on collection Messages
MessagesEncryption = new CollectionEncryption(Meteor.users, fields);