Ghost/core/server/data/schema/index.js
Hannah Wolfe e9d6f61029
Moved checks into frontend data service
refs: https://github.com/TryGhost/Ghost/commit/11867ab43

- These checks live in the wrong place. They are mostly a frontend thing
- The only server place they were used was slack and that was fixed in 11867ab43
- Moving these to the frontend they fit neatly into the frontend data service
2022-04-05 15:23:00 +01:00

5 lines
208 B
JavaScript

module.exports.tables = require('./schema');
module.exports.commands = require('./commands');
module.exports.defaultSettings = require('./default-settings');
module.exports.validate = require('./validator');