More features

This commit is contained in:
Dobie Wollert
2015-02-02 00:31:11 -08:00
parent 6f2cc70181
commit 0ca77dd9b6
6 changed files with 144 additions and 498 deletions

View File

@ -24,7 +24,8 @@ var Post = new Schema({
gallery: [
{ type: String }
],
status: { type: String }
status: { type: String },
tags: [{ type: String }]
});
var PostModel = mongoose.model('Post', Post);