mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
36ba447de0
refs 2bf311edc8
- added missing relationship definitions for included relationships on member model
- cleaned up unnecessary forcing of `id: 99` when creating new records of some models
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
import {Model, hasMany} from 'ember-cli-mirage';
|
|
|
|
export default Model.extend({
|
|
labels: hasMany(),
|
|
emailRecipients: hasMany(),
|
|
products: hasMany()
|
|
});
|