1ade40d697
no issue - the relationship is no longer used (it was a temporary solution whilst we built full member events) and was never fully set up resulting in warning output in test runs - dropped remaining vestiges of the relationship
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
import {Model, hasMany} from 'miragejs';
|
|
|
|
export default Model.extend({
|
|
labels: hasMany(),
|
|
tiers: hasMany(),
|
|
newsletters: hasMany(),
|
|
subscriptions: hasMany()
|
|
});
|