From 8ca32c580800991f47d84e3598cd79a46b91e1b5 Mon Sep 17 00:00:00 2001 From: Wyatt Johnson Date: Tue, 29 Aug 2017 13:54:14 -0600 Subject: [PATCH] added missing fields --- graph/typeDefs.graphql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/graph/typeDefs.graphql b/graph/typeDefs.graphql index 7d5f032cf..7ee44eb19 100644 --- a/graph/typeDefs.graphql +++ b/graph/typeDefs.graphql @@ -612,6 +612,10 @@ type Settings { # closed. closedMessage: String + # editCommentWindowLength is the length of time (in milliseconds) after a + # comment is posted that it can still be edited by the author. + editCommentWindowLength: Int + # charCountEnable is true when the character count restriction is enabled. charCountEnable: Boolean @@ -1084,6 +1088,10 @@ input UpdateSettingsInput { # organizationName is the name of the organization. organizationName: String + + # editCommentWindowLength is the length of time (in milliseconds) after a + # comment is posted that it can still be edited by the author. + editCommentWindowLength: Int } # UpdateSettingsResponse contains any errors that were rendered as a result