Skip to content

Commit

Permalink
Spell check ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
DemeSzabolcs committed Mar 5, 2024
1 parent b59d4bb commit 00293fb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,13 @@ public override async Task ExecuteAsync(MaintenanceTaskExecutionContext context)
{
// These are publicly available test keys.
settings.PublishableKey =
"pk_test_51H59owJmQoVhz82aWAoi9M5s8PC6sSAqFI7KfAD2NRKun5riDIOM0dvu2caM25a5f5JbYLMc5Umxw8Dl7dBIDNwM00yVbSX8uS";
"pk_test_51H59owJmQoVhz82aWAoi9M5s8PC6sSAqFI7KfAD2NRKun5riDIOM0dvu2caM25a5f5JbYLMc5Umxw8Dl7dBIDN" + // #spell-check-ignore-line
"wM00yVbSX8uS"; // #spell-check-ignore-line

var protector = _dataProtectionProvider.CreateProtector(nameof(StripeApiSettingsConfiguration));
settings.SecretKey = protector
.Protect("sk_test_51H59owJmQoVhz82aOUNOuCVbK0u1zjyRFKkFp9EfrqzWaUWqQni3oSxljsdTIu2YZ9XvlbeGjZRU7B7ye2EjJQE000Dm2DtMWD");
.Protect("sk_test_51H59owJmQoVhz82aOUNOuCVbK0u1zjyRFKkFp9EfrqzWaUWqQni3oSxljsdTIu2YZ9XvlbeGjZRU7" + // #spell-check-ignore-line
"B7ye2EjJQE000Dm2DtMWD"); // #spell-check-ignore-line

settings.WebhookSigningSecret = string.Empty;
});
Expand Down

0 comments on commit 00293fb

Please sign in to comment.