0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-11 02:12:21 -05:00

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'
};
},