From 4247f8dabc78408cb5059b7685572e536b2e4cf5 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Wed, 21 May 2025 21:33:26 -0500 Subject: [PATCH] Never say never --- app/helpers/collections_helper.rb | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/helpers/collections_helper.rb b/app/helpers/collections_helper.rb index 07cfa0a71..0f9ac6aad 100644 --- a/app/helpers/collections_helper.rb +++ b/app/helpers/collections_helper.rb @@ -1,10 +1,11 @@ module CollectionsHelper def collection_auto_close_options [ - [ "7 days", 7.days ], - [ "30 days", 30.days ], + [ "3 days", 3.days ], + [ "1 week", 7.days ], + [ "1 month", 30.days ], [ "90 days", 90.days ], - [ "Never", nil ] + [ "1 year", 365.days ] ] end @@ -13,9 +14,10 @@ module CollectionsHelper [ "1 day", 1.days ], [ "2 days", 2.days ], [ "3 days", 3.days ], - [ "7 days", 7.days ], - [ "30 days", 30.days ], - [ "Never", nil ] + [ "1 week", 7.days ], + [ "2 weeks", 14.days ], + [ "1 month", 30.days ], + [ "1 year", 365.days ] ] end end