From 637bea5d32f59b231a86e27670aaa5a0d50c2099 Mon Sep 17 00:00:00 2001 From: "Isa S." Date: Thu, 21 Nov 2024 17:42:45 +0100 Subject: [PATCH] Align IP retention rake with default of 1 year --- lib/tasks/mastodon.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index 40a0e567e38..e6da7f1ff60 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -358,7 +358,7 @@ namespace :mastodon do ip_retention_period_days = prompt.ask('How long should we store IP addresses in the database, for moderation purposes? (in days)') do |q| q.required true - q.default 31 + q.default 365 q.convert :int end