fix: prevent empty page content

This commit is contained in:
Nick
2019-08-26 23:19:39 -04:00
parent 518602b0d4
commit 1d8f1f50e1
2 changed files with 13 additions and 0 deletions

View File

@@ -125,6 +125,10 @@ module.exports = {
message: 'Cannot create this page because an entry already exists at the same path.',
code: 6002
}),
PageEmptyContent: CustomError('PageEmptyContent', {
message: 'Page content cannot be empty.',
code: 6004
}),
PageNotFound: CustomError('PageNotFound', {
message: 'This page does not exist.',
code: 6003