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();