From d351d50a99393cd5c9d657d6b2360ad4832779a1 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 20 Dec 2023 12:30:48 +0000 Subject: [PATCH] web/app: add new development client secret. The previous one was incorrect, seemingly. --- web/app.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.rb b/web/app.rb index 73946ae47..f86c9ce96 100644 --- a/web/app.rb +++ b/web/app.rb @@ -9,7 +9,7 @@ # Don't worry: these credentials are not sensitive but just use for # "Strap (development)" with the URL and callback both set to localhost. GITHUB_KEY = ENV.fetch("GITHUB_KEY", "b28d0c47b8925e999e49") -GITHUB_SECRET = ENV.fetch("GITHUB_SECRET", "cd4c391320f669e5807615611d0096414bc9af68") +GITHUB_SECRET = ENV.fetch("GITHUB_SECRET", "037ac891e2e0b8bc91558d5ff358d2ff4fa1beb7") SESSION_SECRET = ENV.fetch("SESSION_SECRET") STRAP_ISSUES_URL = ENV.fetch("STRAP_ISSUES_URL", nil)