diff --git a/app/mirage/config.js b/app/mirage/config.js index 2031b102..834a5301 100644 --- a/app/mirage/config.js +++ b/app/mirage/config.js @@ -1,3 +1,14 @@ +// Copyright 2016 Documize Inc. . All rights reserved. +// +// This software (Documize Community Edition) is licensed under +// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html +// +// You can operate outside the AGPL restrictions by purchasing +// Documize Enterprise Edition and obtaining a commercial license +// by contacting . +// +// https://documize.com + import Mirage from 'ember-cli-mirage'; export default function () { diff --git a/app/mirage/factories/contact.js b/app/mirage/factories/contact.js index 1b3a3eab..ffbcc23b 100644 --- a/app/mirage/factories/contact.js +++ b/app/mirage/factories/contact.js @@ -1,20 +1,31 @@ +// Copyright 2016 Documize Inc. . All rights reserved. +// +// This software (Documize Community Edition) is licensed under +// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html +// +// You can operate outside the AGPL restrictions by purchasing +// Documize Enterprise Edition and obtaining a commercial license +// by contacting . +// +// https://documize.com + /* This is an example factory definition. Create more files in this directory to define additional factories. */ -import Mirage/*, {faker} */ from 'ember-cli-mirage'; +import Mirage /*, {faker} */ from 'ember-cli-mirage'; export default Mirage.Factory.extend({ - // name: 'Pete', // strings - // age: 20, // numbers - // tall: true, // booleans + // name: 'Pete', // strings + // age: 20, // numbers + // tall: true, // booleans - // email: function(i) { // and functions - // return 'person' + i + '@test.com'; - // }, + // email: function(i) { // and functions + // return 'person' + i + '@test.com'; + // }, - // firstName: faker.name.firstName, // using faker - // lastName: faker.name.firstName, - // zipCode: faker.address.zipCode + // firstName: faker.name.firstName, // using faker + // lastName: faker.name.firstName, + // zipCode: faker.address.zipCode }); diff --git a/app/mirage/factories/document.js b/app/mirage/factories/document.js index 85018979..71c8de5f 100644 --- a/app/mirage/factories/document.js +++ b/app/mirage/factories/document.js @@ -1,4 +1,14 @@ +// Copyright 2016 Documize Inc. . All rights reserved. +// +// This software (Documize Community Edition) is licensed under +// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html +// +// You can operate outside the AGPL restrictions by purchasing +// Documize Enterprise Edition and obtaining a commercial license +// by contacting . +// +// https://documize.com + import { Factory } from 'ember-cli-mirage'; -export default Factory.extend({ -}); +export default Factory.extend({}); diff --git a/app/mirage/factories/folder-permission.js b/app/mirage/factories/folder-permission.js index 457da316..e6f26d39 100644 --- a/app/mirage/factories/folder-permission.js +++ b/app/mirage/factories/folder-permission.js @@ -1,3 +1,14 @@ +// Copyright 2016 Documize Inc. . All rights reserved. +// +// This software (Documize Community Edition) is licensed under +// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html +// +// You can operate outside the AGPL restrictions by purchasing +// Documize Enterprise Edition and obtaining a commercial license +// by contacting . +// +// https://documize.com + import { Factory, faker } from 'ember-cli-mirage'; export default Factory.extend({ diff --git a/app/mirage/factories/organization.js b/app/mirage/factories/organization.js index e6885593..bed871f3 100644 --- a/app/mirage/factories/organization.js +++ b/app/mirage/factories/organization.js @@ -1,3 +1,14 @@ +// Copyright 2016 Documize Inc. . All rights reserved. +// +// This software (Documize Community Edition) is licensed under +// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html +// +// You can operate outside the AGPL restrictions by purchasing +// Documize Enterprise Edition and obtaining a commercial license +// by contacting . +// +// https://documize.com + import { Factory } from 'ember-cli-mirage'; export default Factory.extend({ diff --git a/app/mirage/factories/user.js b/app/mirage/factories/user.js index 2809ad84..371eadae 100644 --- a/app/mirage/factories/user.js +++ b/app/mirage/factories/user.js @@ -1,3 +1,14 @@ +// Copyright 2016 Documize Inc. . All rights reserved. +// +// This software (Documize Community Edition) is licensed under +// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html +// +// You can operate outside the AGPL restrictions by purchasing +// Documize Enterprise Edition and obtaining a commercial license +// by contacting . +// +// https://documize.com + import { Factory, faker } from 'ember-cli-mirage'; export default Factory.extend({