Story: extend MAX_EDIT_MINS to 3 hours

This commit is contained in:
joshua stein 2015-10-14 18:23:06 -05:00
parent 1c789fbae0
commit 700c63b936

View file

@ -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