mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
7 lines
128 B
JavaScript
7 lines
128 B
JavaScript
|
import {Model, belongsTo} from 'miragejs';
|
||
|
|
||
|
export default Model.extend({
|
||
|
member: belongsTo(),
|
||
|
product: belongsTo()
|
||
|
});
|