From 87ccae0d90c1c3c224df44bc8b8ea1d6e7144c43 Mon Sep 17 00:00:00 2001 From: Kukks Date: Sun, 5 Mar 2023 14:40:18 +0100 Subject: [PATCH] add missing docs of store payment method criteria --- .../wwwroot/swagger/v1/swagger.template.stores.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores.json b/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores.json index 40240fbd2..d762c29b9 100644 --- a/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores.json +++ b/BTCPayServer/wwwroot/swagger/v1/swagger.template.stores.json @@ -451,6 +451,14 @@ "type": "string", "example": "BTC", "description": "The default payment method to load when displaying an invoice. It can be in the format of `BTC_LightningNetwork` to specify Lightning to be the default or `BTC_OnChain`/ `BTC` for on-chain to be the default. " + }, + "paymentMethodCriteria": { + "type": "array", + "nullable": true, + "items": { + "$ref": "#/components/schemas/PaymentMethodCriteriaData" + }, + "description": "The criteria required to activate specific payment methods." } } },