Skip to content

Instantly share code, notes, and snippets.

@jgdovin
Created March 28, 2015 13:26
Show Gist options
  • Save jgdovin/e56271f1d572d0dcadd2 to your computer and use it in GitHub Desktop.
Save jgdovin/e56271f1d572d0dcadd2 to your computer and use it in GitHub Desktop.
Accounts = new Mongo.Collection('accounts', {
transform: function (account) {
account.label = function(){
return this.name;
};
return account;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment