mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-06 22:40:14 -05:00
e24b5c3382
On server load, check for settings which have not been set, and apply a default value to the settings table from a JSON file.
11 lines
136 B
JavaScript
11 lines
136 B
JavaScript
var uuid = require('node-uuid');
|
|
|
|
module.exports = {
|
|
posts: [],
|
|
|
|
roles: [],
|
|
|
|
permissions: [],
|
|
|
|
permissions_roles: []
|
|
};
|