Added type property to post model defaults

refs #10922
This commit is contained in:
Fabien O'Carroll 2019-07-23 15:26:24 +08:00
parent 82d8c38033
commit dc3345b1c5

View File

@ -45,6 +45,7 @@ Post = ghostBookshelf.Model.extend({
status: 'draft',
featured: false,
page: false,
type: 'post',
visibility: 'public'
};
},