1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-18 16:11:28 -05:00

apple webhook key

This commit is contained in:
Kyle Spearrin
2019-09-13 09:58:30 -04:00
parent 2f7cd3ee95
commit a370dd1149
3 changed files with 3 additions and 1 deletions

View File

@ -51,7 +51,7 @@ namespace Bit.Billing.Controllers
var key = HttpContext.Request.Query.ContainsKey("key") ?
HttpContext.Request.Query["key"].ToString() : null;
if(key != _billingSettings.PayPal.WebhookKey)
if(key != _billingSettings.AppleWebhookKey)
{
return new BadRequestResult();
}