TryGhost/Ghost

View on GitHub
ghost/admin/mirage/models/member.js

Summary

Maintainability
A
0 mins
Test Coverage
import {Model, hasMany} from 'miragejs';

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