From 7400cc94a34a1d1820ef8ce2feb195002b95eef2 Mon Sep 17 00:00:00 2001 From: damedotblog Date: Wed, 23 Apr 2025 12:58:57 -0400 Subject: [PATCH] switch to prod --- public/client-metadata.json | 6 +++--- src/contexts/AuthContext.js | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/public/client-metadata.json b/public/client-metadata.json index 7232f10..74e4bba 100644 --- a/public/client-metadata.json +++ b/public/client-metadata.json @@ -1,9 +1,9 @@ { - "client_id": "https://testing.cred.blue/client-metadata.json", + "client_id": "https://cred.blue/client-metadata.json", "client_name": "cred.blue", - "client_uri": "https://testing.cred.blue", + "client_uri": "https://cred.blue", "redirect_uris": [ - "https://testing.cred.blue/login/callback" + "https://cred.blue/login/callback" ], "scope": "atproto transition:generic", "grant_types": [ diff --git a/src/contexts/AuthContext.js b/src/contexts/AuthContext.js index 45628dd..7c213ad 100644 --- a/src/contexts/AuthContext.js +++ b/src/contexts/AuthContext.js @@ -7,11 +7,11 @@ export const AuthContext = createContext(null); // Client metadata for Bluesky OAuth const clientMetadata = { - client_id: `https://testing.cred.blue/client-metadata.json`, + client_id: `https://cred.blue/client-metadata.json`, client_name: "cred.blue", - client_uri: `https://testing.cred.blue`, - redirect_uris: [`https://testing.cred.blue/login/callback`], - logo_uri: `https://testing.cred.blue/favicon.ico`, + client_uri: `https://cred.blue`, + redirect_uris: [`https://cred.blue/login/callback`], + logo_uri: `https://cred.blue/favicon.ico`, scope: "atproto transition:generic", grant_types: ["authorization_code", "refresh_token"], response_types: ["code"], -- 2.51.2