mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
Fix return type of webhooks get so that plugins can use it
This commit is contained in:
@@ -43,7 +43,7 @@ namespace BTCPayServer.Controllers.Greenfield
|
|||||||
{
|
{
|
||||||
return Ok((await StoreRepository.GetWebhooks(CurrentStoreId))
|
return Ok((await StoreRepository.GetWebhooks(CurrentStoreId))
|
||||||
.Select(o => FromModel(o, false))
|
.Select(o => FromModel(o, false))
|
||||||
.ToList());
|
.ToArray());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user