Ghost/ghost/admin/mirage/models/member.js
Kevin Ansfield 1ade40d697 Removed unneeded member.emailRecipients relationship setup
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
2022-05-25 11:18:37 +01:00

9 lines
178 B
JavaScript

import {Model, hasMany} from 'miragejs';
export default Model.extend({
labels: hasMany(),
tiers: hasMany(),
newsletters: hasMany(),
subscriptions: hasMany()
});