mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
22 lines
399 B
JavaScript
22 lines
399 B
JavaScript
|
var uuid = require('node-uuid');
|
||
|
|
||
|
module.exports = {
|
||
|
posts: [],
|
||
|
|
||
|
settings: [
|
||
|
{
|
||
|
"uuid": uuid.v4(),
|
||
|
"key": "installedPlugins",
|
||
|
"value": "[]",
|
||
|
"created_by": 1,
|
||
|
"updated_by": 1,
|
||
|
"type": "core"
|
||
|
}
|
||
|
],
|
||
|
|
||
|
roles: [],
|
||
|
|
||
|
permissions: [],
|
||
|
|
||
|
permissions_roles: []
|
||
|
};
|