From a34d1641b310b9afee3464aff9991c10e1c6f2dc Mon Sep 17 00:00:00 2001 From: Aaron Clauson Date: Tue, 18 Dec 2018 20:16:48 +0100 Subject: [PATCH] Set disable registration as default true. --- BTCPayServer/Services/PoliciesSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Services/PoliciesSettings.cs b/BTCPayServer/Services/PoliciesSettings.cs index b1ef0a423..c6c533359 100644 --- a/BTCPayServer/Services/PoliciesSettings.cs +++ b/BTCPayServer/Services/PoliciesSettings.cs @@ -17,6 +17,6 @@ namespace BTCPayServer.Services [JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)] [Display(Name = "Disable registration")] - public bool LockSubscription { get; set; } + public bool LockSubscription { get; set; } = true; } }