I'm trying to insert the logged in users username but whenever I submit the form. The collection never gets inserted. It only gets inserted if I comment out the createdBy field. I'm currently using the package User Accounts as my login/signin procedure
Here is my code:
createdBy: {
type: String,
autoValue: function() {
return this.field('username');
}
},
createdAt: {
type: Date,
autoValue: function() {
return new Date();
}
}