I'm rather new to Telescope and Meteor.
I've added a custom field as such:
Users.addField({
fieldName: 'apiToken',
fieldSchema: {
type: String,
autoform: {
group: 'API Token',
label: 'Token'
},
optional: true,
editableBy: ["member", "manager", "admin"]
}
});
I got the field to appear in the User settings,
but whenever I try to enter something and submit,
it gives me the error "apiToken is not allowed by the schema
".
I'm not sure if this is a Telescope or Meteor issue.
Do I need to edit the schema in MongoDB?