From bdebf5cda7a5e0916b8be5dfed115b285ef30f83 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 24 Feb 2026 22:20:08 -0800 Subject: [PATCH] refactor: migrate EncryptID URLs from encryptid.jeffemmett.com to auth.ridentity.online Part of the ridentity.online branding migration. The EncryptID auth server is now accessible at auth.ridentity.online (with the legacy encryptid.jeffemmett.com kept as a backward-compatible alias). Co-Authored-By: Claude Opus 4.6 --- lib/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/auth.ts b/lib/auth.ts index f7d9968..fec6844 100644 --- a/lib/auth.ts +++ b/lib/auth.ts @@ -9,7 +9,7 @@ import { create } from 'zustand' import { persist } from 'zustand/middleware' import { EncryptIDClient } from '@encryptid/sdk/client' -const ENCRYPTID_SERVER = process.env.NEXT_PUBLIC_ENCRYPTID_SERVER_URL || 'https://encryptid.jeffemmett.com' +const ENCRYPTID_SERVER = process.env.NEXT_PUBLIC_ENCRYPTID_SERVER_URL || 'https://auth.ridentity.online' const client = new EncryptIDClient(ENCRYPTID_SERVER) interface AuthState {