mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
6 lines
99 B
JavaScript
6 lines
99 B
JavaScript
|
import {Model, hasMany} from 'miragejs';
|
||
|
|
||
|
export default Model.extend({
|
||
|
members: hasMany()
|
||
|
});
|