We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I don't want to add the rev field to a mixin, but if I don't, I get the error for it as if it was a model :
Please add a `rev` attribute of type `string` on the AssignableNote model.
This probably because I have a model that uses that mixin :
import AssignableAction from 'erm/mixins/assignable-action'; import AssignableNote from 'erm/mixins/assignable-note'; import Model from 'ember-pouch/model'; export default Model.extend(AssignableAction, AssignableNote, { org: DS.belongsTo('org'), name: DS.attr(), email: DS.attr(), });
Any help appreciated -- thanks!
The text was updated successfully, but these errors were encountered:
Does this happen even if you add a rev to the model that actually extends an Ember Pouch model?
rev
Sorry, something went wrong.
No branches or pull requests
I don't want to add the rev field to a mixin, but if I don't, I get the error for it as if it was a model :
Please add a `rev` attribute of type `string` on the AssignableNote model.
This probably because I have a model that uses that mixin :
Any help appreciated -- thanks!
The text was updated successfully, but these errors were encountered: