2017-10-07 01:27:36 +00:00
|
|
|
import { Factory, faker } from 'ember-cli-mirage';
|
|
|
|
|
|
|
|
export default Factory.extend({
|
2017-10-10 18:23:10 +00:00
|
|
|
id: i => (i === 0 ? 'default' : `namespace-${i}`),
|
|
|
|
|
2017-10-07 01:27:36 +00:00
|
|
|
name() {
|
|
|
|
return this.id;
|
|
|
|
},
|
2017-10-10 18:23:10 +00:00
|
|
|
|
2017-10-07 01:27:36 +00:00
|
|
|
hash: () => faker.random.uuid(),
|
|
|
|
description: '',
|
|
|
|
});
|