From 700c63b9365c046f93c1265c3e3a8f05b9abd2e2 Mon Sep 17 00:00:00 2001 From: joshua stein Date: Wed, 14 Oct 2015 18:23:06 -0500 Subject: [PATCH] Story: extend MAX_EDIT_MINS to 3 hours --- app/models/story.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/story.rb b/app/models/story.rb index 2ffdfc1..c2d56d6 100644 --- a/app/models/story.rb +++ b/app/models/story.rb @@ -26,7 +26,7 @@ class Story < ActiveRecord::Base DOWNVOTABLE_DAYS = 14 # after this many minutes old, a story cannot be edited - MAX_EDIT_MINS = 90 + MAX_EDIT_MINS = (60 * 3) # days a story is considered recent, for resubmitting RECENT_DAYS = 30