From e1af98e13ba96468169212e088caacc1c2136983 Mon Sep 17 00:00:00 2001 From: Sam Gamgee Date: Tue, 30 Apr 2019 15:24:12 +1000 Subject: [PATCH] New post type was added --- src/cls/Community/Post.cls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cls/Community/Post.cls b/src/cls/Community/Post.cls index 0afddc5..f97ca8b 100644 --- a/src/cls/Community/Post.cls +++ b/src/cls/Community/Post.cls @@ -45,7 +45,7 @@ Index AuthorIndex On Author; Property CommentsAmount As %Integer [ Calculated, SqlComputeCode = { set {*} = ##class(Community.Post).GetCommentsAmount({Id})}, SqlComputed ]; -Property PostType As %String(VALUELIST = ",Question,Article,Announcement"); +Property PostType As %String(VALUELIST = ",Question,Article,Announcement,Digest"); /// Hash of input row, used to build this object Property Hash As %String;