Validation mixin that applies to models that use the ember-cp-validations mixin. This should be imported to the model file of the model you wish to validate in the following way:

import ChannelValidation from 'msgc/mixins/validations/channel';
import ValidationMixin from '@bennerinformatics/ember-fw/mixins/validation';

export default Model.extend(ChannelValidation, ValidationMixin, {
    // ... your model content here
});
Show: