From 787bdc1488da476e54fb0daded061cf36ecf9010 Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 10 Feb 2025 15:46:36 +0100 Subject: [feature] make account sign-up / backlog limits configurable (#3768) --- testrig/config.go | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'testrig/config.go') diff --git a/testrig/config.go b/testrig/config.go index 0a957a831..f68a8ffb7 100644 --- a/testrig/config.go +++ b/testrig/config.go @@ -102,10 +102,12 @@ func testDefaults() config.Configuration { InstanceSubscriptionsProcessFrom: "23:00", // 11pm, InstanceSubscriptionsProcessEvery: 24 * time.Hour, // 1/day. - AccountsRegistrationOpen: true, - AccountsReasonRequired: true, - AccountsAllowCustomCSS: true, - AccountsCustomCSSLength: 10000, + AccountsRegistrationOpen: true, + AccountsReasonRequired: true, + AccountsRegistrationDailyLimit: 10, + AccountsRegistrationBacklogLimit: 20, + AccountsAllowCustomCSS: true, + AccountsCustomCSSLength: 10000, MediaDescriptionMinChars: 0, MediaDescriptionMaxChars: 500, -- cgit v1.2.3