mirror of
https://github.com/documize/community.git
synced 2025-07-25 08:09:43 +02:00
9 lines
263 B
JavaScript
9 lines
263 B
JavaScript
|
import { Factory, faker } from 'ember-cli-mirage';
|
||
|
|
||
|
export default Factory.extend({
|
||
|
"folderId": faker.list.cycle("VzMuyEw_3WqiafcG", "VzMygEw_3WrtFzto"),
|
||
|
"userId": faker.list.cycle("VzMuyEw_3WqiafcE", "VzMuyEw_3WqiafcE"),
|
||
|
"canView": true,
|
||
|
"canEdit": true
|
||
|
});
|