From 818c09a9b849bfaf29add57d8580f85995f1f285 Mon Sep 17 00:00:00 2001 From: Benjamin Goering Date: Wed, 3 May 2017 14:06:07 -0700 Subject: [PATCH] Edit window is now 30s instead of 5min --- services/comments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/comments.js b/services/comments.js index c87fc313a..0c379aa75 100644 --- a/services/comments.js +++ b/services/comments.js @@ -15,7 +15,7 @@ const STATUSES = [ 'NONE', ]; -const EDIT_WINDOW_MS = 5 * 60 * 1000; // 5 minutes +const EDIT_WINDOW_MS = 30 * 1000; // 30 seconds module.exports = class CommentsService {