From 55ceb55aa137b7c2ca3a6d7f662e2944b1c9846b Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Tue, 24 Feb 2026 22:20:09 -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 --- .env.example | 2 +- browser-extension/manifest.json | 2 +- src/lib/space-role.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.env.example b/.env.example index 0204fd7..303d766 100644 --- a/.env.example +++ b/.env.example @@ -6,4 +6,4 @@ NEXT_PUBLIC_RSPACE_URL=https://rspace.online RSPACE_INTERNAL_URL=http://rspace-online:3000 # EncryptID -NEXT_PUBLIC_ENCRYPTID_SERVER_URL=https://encryptid.jeffemmett.com +NEXT_PUBLIC_ENCRYPTID_SERVER_URL=https://auth.ridentity.online diff --git a/browser-extension/manifest.json b/browser-extension/manifest.json index 7317a84..95f6da2 100644 --- a/browser-extension/manifest.json +++ b/browser-extension/manifest.json @@ -12,7 +12,7 @@ ], "host_permissions": [ "https://rnotes.online/*", - "https://encryptid.jeffemmett.com/*", + "https://auth.ridentity.online/*", "*://*/*" ], "action": { diff --git a/src/lib/space-role.ts b/src/lib/space-role.ts index 9bdbe56..b6322a5 100644 --- a/src/lib/space-role.ts +++ b/src/lib/space-role.ts @@ -16,7 +16,7 @@ import { } from '@encryptid/sdk/types'; import { RNOTES_PERMISSIONS } from '@encryptid/sdk/types/modules'; -const ENCRYPTID_SERVER = process.env.ENCRYPTID_SERVER_URL || 'https://encryptid.jeffemmett.com'; +const ENCRYPTID_SERVER = process.env.ENCRYPTID_SERVER_URL || 'https://auth.ridentity.online'; // In-memory cache (5 minute TTL) const roleCache = new Map();