Skip to content

Commit

Permalink
Merge pull request #322 from GregFinzer/feature/fixRecaptcha
Browse files Browse the repository at this point in the history
Fix for recaptcha
  • Loading branch information
GregFinzer authored Aug 23, 2024
2 parents 4c0fa40 + 3d42739 commit a185e61
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions BedBrigade.Data/Data/Seeding/Seed.cs
Original file line number Diff line number Diff line change
Expand Up @@ -310,16 +310,16 @@ private static async Task SeedConfigurations(IDbContextFactory<DataContext> cont
ConfigurationValue = "30",
Section = ConfigSection.System
},
new()
new()
{
ConfigurationKey = ConfigNames.ReCaptchaSecret,
ConfigurationValue = "6LedaRIdAAAAANBtScRJVeWtwW25zJKLYnxzs4mz",
ConfigurationKey = ConfigNames.ReCaptchaSiteKey,
ConfigurationValue = "6LeDtS0qAAAAANLi2IY68WW555JXAWIelpoZQIWO",
Section = ConfigSection.System
},
new()
{
ConfigurationKey = ConfigNames.ReCaptchaSiteKey,
ConfigurationValue = "6LedaRIdAAAAACLvJRk3_zhzPL56te_aMIZwl7rZ",
ConfigurationKey = ConfigNames.ReCaptchaSecret,
ConfigurationValue = "6LeDtS0qAAAAANGrgPxMV2vTcgVG1e01KaRGjuqL",
Section = ConfigSection.System
},
new()
Expand Down

0 comments on commit a185e61

Please sign in to comment.