Skip to content

chore: Expose workspace hashed url in workspace admin page and startup logs - #40685

Merged
ggazzo merged 3 commits into
developfrom
chore/expose-hashed-url
Jun 12, 2026
Merged

chore: Expose workspace hashed url in workspace admin page and startup logs#40685
ggazzo merged 3 commits into
developfrom
chore/expose-hashed-url

Conversation

@rodrigok

@rodrigok rodrigok commented May 25, 2026

Copy link
Copy Markdown
Member
image image

Proposed changes (including videos or screenshots)

Issue(s)

Steps to test or reproduce

Further comments

Summary by CodeRabbit

  • New Features

    • Added workspace URL and hashed workspace URL information to deployment details displayed in the admin workspace view.
    • Server startup information now includes hashed workspace URL for enhanced identification.
  • Improvements

    • Enhanced validation logic to improve workspace identification handling.
  • Documentation

    • Added localization entry for "Hashed Site URL" label.

@dionisio-bot

dionisio-bot Bot commented May 25, 2026

Copy link
Copy Markdown
Contributor

Looks like this PR is not ready to merge, because of the following issues:

  • This PR is missing the 'stat: QA assured' label

Please fix the issues and try again

If you have any trouble, please check the PR guidelines

@changeset-bot

changeset-bot Bot commented May 25, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 04c70ed

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@coderabbitai

coderabbitai Bot commented May 25, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Walkthrough

This PR introduces SHA-256 hashing of workspace URLs in the License module and exposes both plain and hashed workspace URLs through the server API, client UI, startup message, and license validation logic.

Changes

Workspace URL Hashing Feature

Layer / File(s) Summary
Core License URL Hashing
ee/packages/license/src/license.ts
LicenseManager imports Node's crypto module and adds hashWorkspaceUrl(url) (SHA-256 hex) and getHashedWorkspaceUrl() (returns hash of current workspace URL or undefined) public methods.
Workspace Type Contract
packages/core-typings/src/IWorkspaceInfo.ts
IWorkspaceInfo interface gains two optional string fields: workspaceUrl and hashedWorkspaceUrl.
License URL Validation Refactoring
ee/packages/license/src/validation/validateLicenseUrl.ts, validateLicenseUrl.spec.ts
Validation logic computes hashedWorkspaceUrl once and uses it for hash comparison instead of deriving hashes inline; adds type-mismatch detection to avoid invalidating licenses when url-typed entries resemble hashes or hash-typed entries resemble the workspace URL; changes default switch branch to mark unknown types as invalid; includes hashedWorkspaceUrl in error logging; test suite covers type-mismatch scenarios.
Server API Integration
apps/meteor/app/api/server/lib/getServerInfo.ts
getServerInfo imports License and extends returned workspace data with workspaceUrl and hashedWorkspaceUrl properties from License methods.
Client UI Display
apps/meteor/client/views/admin/workspace/DeploymentCard/DeploymentCard.tsx
DeploymentCard destructures workspace URL fields from serverInfo, conditionally renders "Site_Url" and "Hashed_Site_Url" sections, applies lineBreak: 'anywhere' style to hashed URL.
Server Startup and Localization
apps/meteor/server/startup/serverRunning.ts, packages/i18n/src/locales/en.i18n.json
Startup banner displays both typed Site_Url and hashed workspace URL via License.getHashedWorkspaceUrl(), and i18n adds "Hashed Site URL" translation entry.

🎯 3 (Moderate) | ⏱️ ~25 minutes

type: feature

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main change: exposing workspace hashed URL in the workspace admin page and startup logs, which is reflected across all modified files.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@codecov

codecov Bot commented May 25, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 93.10345% with 2 lines in your changes missing coverage. Please review.
✅ Project coverage is 69.86%. Comparing base (bd399c5) to head (04c70ed).

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##           develop   #40685      +/-   ##
===========================================
- Coverage    70.12%   69.86%   -0.26%     
===========================================
  Files         3355     3376      +21     
  Lines       129225   129657     +432     
  Branches     22333    22529     +196     
===========================================
- Hits         90616    90586      -30     
- Misses       35315    35777     +462     
  Partials      3294     3294              
Flag Coverage Δ
unit 70.08% <92.30%> (-0.02%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@rodrigok
rodrigok force-pushed the chore/expose-hashed-url branch from 6f035b5 to eaaeeea Compare May 25, 2026 21:40
@rodrigok rodrigok added this to the 8.6.0 milestone May 25, 2026
@rodrigok
rodrigok force-pushed the chore/expose-hashed-url branch 4 times, most recently from 9d8018f to 599ae75 Compare May 26, 2026 21:03
@rodrigok
rodrigok force-pushed the chore/expose-hashed-url branch from 599ae75 to 0a5e2a9 Compare May 26, 2026 21:04
@rodrigok
rodrigok marked this pull request as ready for review June 12, 2026 16:50
@rodrigok
rodrigok requested review from a team as code owners June 12, 2026 16:50
@coderabbitai coderabbitai Bot added the type: feature Pull requests that introduces new feature label Jun 12, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🧹 Nitpick comments (1)
ee/packages/license/src/validation/validateLicenseUrl.ts (1)

45-64: ⚡ Quick win

Remove the new inline implementation comments here.

These two explanatory blocks should be expressed by helper names or structure instead of source comments, to stay consistent with the TS/JS repo convention.

As per coding guidelines, "**/*.{ts,tsx,js}: ... Avoid code comments in the implementation`."

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@ee/packages/license/src/validation/validateLicenseUrl.ts` around lines 45 -
64, The inline explanatory comments inside validateLicenseUrl.ts should be
removed and their intent expressed via clearer code structure: extract the
conditional checks into well-named helpers or boolean variables (e.g.,
looksLikeHash(url.value) using /^[a-f0-9]{64}$/i, looksLikeUrl(url.value) maybe
reusing validateUrl heuristics) and/or small helper functions like
shouldValidateAsHashFallback(url, hashedWorkspaceUrl) and
shouldValidateAsUrlFallback(url, workspaceUrl), then replace the commented
blocks with those helpers in the if statements and keep the existing logger.warn
calls (adjusting message if needed); locate the logic around url.type,
validateHash, validateUrl, hashedWorkspaceUrl, workspaceUrl and logger.warn to
apply these renames so intent is conveyed by names not comments.

Source: Coding guidelines

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@apps/meteor/app/api/server/lib/getServerInfo.ts`:
- Around line 18-20: getServerInfo currently returns License.getWorkspaceUrl and
License.getHashedWorkspaceUrl which exposes workspace identifiers on the public
/info payload; remove these two fields from the public return value in the
getServerInfo function and either (a) only include them when the same
admin/permission check used by the /info route passes, or (b) move them to a new
privileged endpoint (e.g., getAdminServerInfo) that requires the appropriate
admin permission; update any callers that need these values to use the new
guarded path or permission-checked return.

In `@apps/meteor/server/startup/serverRunning.ts`:
- Around line 52-53: The banner prints the raw Site_Url from settings but the
hashed line uses License.getHashedWorkspaceUrl(), causing mismatch; change the
plain URL source to the canonical value returned by License.getWorkspaceUrl()
instead of settings.get<string>('Site_Url') so both lines use the same
normalized workspace URL (keep License.getHashedWorkspaceUrl() for the digest).

---

Nitpick comments:
In `@ee/packages/license/src/validation/validateLicenseUrl.ts`:
- Around line 45-64: The inline explanatory comments inside
validateLicenseUrl.ts should be removed and their intent expressed via clearer
code structure: extract the conditional checks into well-named helpers or
boolean variables (e.g., looksLikeHash(url.value) using /^[a-f0-9]{64}$/i,
looksLikeUrl(url.value) maybe reusing validateUrl heuristics) and/or small
helper functions like shouldValidateAsHashFallback(url, hashedWorkspaceUrl) and
shouldValidateAsUrlFallback(url, workspaceUrl), then replace the commented
blocks with those helpers in the if statements and keep the existing logger.warn
calls (adjusting message if needed); locate the logic around url.type,
validateHash, validateUrl, hashedWorkspaceUrl, workspaceUrl and logger.warn to
apply these renames so intent is conveyed by names not comments.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: fc26a2bb-88ef-4cec-b034-2fa51aa19ed6

📥 Commits

Reviewing files that changed from the base of the PR and between bd399c5 and 04c70ed.

📒 Files selected for processing (8)
  • apps/meteor/app/api/server/lib/getServerInfo.ts
  • apps/meteor/client/views/admin/workspace/DeploymentCard/DeploymentCard.tsx
  • apps/meteor/server/startup/serverRunning.ts
  • ee/packages/license/src/license.ts
  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
  • ee/packages/license/src/validation/validateLicenseUrl.ts
  • packages/core-typings/src/IWorkspaceInfo.ts
  • packages/i18n/src/locales/en.i18n.json
📜 Review details
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (7)
  • GitHub Check: cubic · AI code reviewer
  • GitHub Check: Hacktron Security Check
  • GitHub Check: 🔨 Test Unit / Unit Tests
  • GitHub Check: 🔎 Code Check / TypeScript
  • GitHub Check: 🔎 Code Check / Code Lint
  • GitHub Check: 🔨 Test Storybook / Test Storybook
  • GitHub Check: 📦 Meteor Build (coverage)
🧰 Additional context used
📓 Path-based instructions (2)
**/*.{ts,tsx,js}

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.{ts,tsx,js}: Write concise, technical TypeScript/JavaScript with accurate typing in Playwright tests
Avoid code comments in the implementation

Files:

  • apps/meteor/server/startup/serverRunning.ts
  • apps/meteor/client/views/admin/workspace/DeploymentCard/DeploymentCard.tsx
  • packages/core-typings/src/IWorkspaceInfo.ts
  • ee/packages/license/src/license.ts
  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
  • apps/meteor/app/api/server/lib/getServerInfo.ts
  • ee/packages/license/src/validation/validateLicenseUrl.ts
**/*.spec.ts

📄 CodeRabbit inference engine (.cursor/rules/playwright.mdc)

**/*.spec.ts: Use descriptive test names that clearly communicate expected behavior in Playwright tests
Use .spec.ts extension for test files (e.g., login.spec.ts)

Files:

  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
🧠 Learnings (7)
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In the Rocket.Chat repository, do not reference Biome lint rules in code review feedback. Biome is not used even if biome.json exists; only reference Biome rules if there is explicit, project-wide usage documented. For TypeScript files, review lint implications without Biome guidance unless the project enables Biome rules.

Applied to files:

  • apps/meteor/server/startup/serverRunning.ts
  • packages/core-typings/src/IWorkspaceInfo.ts
  • ee/packages/license/src/license.ts
  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
  • apps/meteor/app/api/server/lib/getServerInfo.ts
  • ee/packages/license/src/validation/validateLicenseUrl.ts
📚 Learning: 2026-02-26T19:25:44.063Z
Learnt from: gabriellsh
Repo: RocketChat/Rocket.Chat PR: 38778
File: packages/ui-voip/src/providers/useMediaSession.ts:192-192
Timestamp: 2026-02-26T19:25:44.063Z
Learning: In this repository (RocketChat/Rocket.Chat), Biome lint rules are not used even if a biome.json exists. When reviewing TypeScript files (e.g., packages/ui-voip/src/providers/useMediaSession.ts), ensure lint suggestions do not reference Biome-specific rules. Rely on general ESLint/TypeScript lint rules and project conventions instead.

Applied to files:

  • apps/meteor/server/startup/serverRunning.ts
  • packages/core-typings/src/IWorkspaceInfo.ts
  • ee/packages/license/src/license.ts
  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
  • apps/meteor/app/api/server/lib/getServerInfo.ts
  • ee/packages/license/src/validation/validateLicenseUrl.ts
📚 Learning: 2026-05-06T12:21:44.083Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 40256
File: apps/meteor/client/components/CreateDiscussion/CreateDiscussion.tsx:121-149
Timestamp: 2026-05-06T12:21:44.083Z
Learning: Field wrappers in rocket.chat/fuselage-forms (Field, FieldLabel, FieldRow, FieldError, FieldHint) auto-create htmlFor/id associations, aria-describedby, and role="alert" for errors. Do not manually set htmlFor, id, aria-describedby, or role attributes when using these wrappers. This automatic wiring does not apply to plain rocket.chat/fuselage components, which require explicit ID wiring per the accessibility docs. In code reviews, prefer using fuselage-forms wrappers for form fields and verify there is no unnecessary manual ID/aria wiring in files that use these wrappers. If a component uses plain fuselage components, ensure proper id wiring as per docs.

Applied to files:

  • apps/meteor/server/startup/serverRunning.ts
  • apps/meteor/client/views/admin/workspace/DeploymentCard/DeploymentCard.tsx
  • packages/core-typings/src/IWorkspaceInfo.ts
  • ee/packages/license/src/license.ts
  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
  • apps/meteor/app/api/server/lib/getServerInfo.ts
  • ee/packages/license/src/validation/validateLicenseUrl.ts
📚 Learning: 2026-03-27T14:52:56.865Z
Learnt from: dougfabris
Repo: RocketChat/Rocket.Chat PR: 39892
File: apps/meteor/client/views/room/contextualBar/Threads/Thread.tsx:150-155
Timestamp: 2026-03-27T14:52:56.865Z
Learning: In Rocket.Chat, there are two different `ModalBackdrop` components with different prop APIs. During review, confirm the import source: (1) `rocket.chat/fuselage` `ModalBackdrop` uses `ModalBackdropProps` based on `BoxProps` (so it supports `onClick` and other Box/DOM props) and does not have an `onDismiss` prop; (2) `rocket.chat/ui-client` `ModalBackdrop` uses a narrower props interface like `{ children?: ReactNode; onDismiss?: () => void }` and handles Escape keypress and outside mouse-up, and it does not forward arbitrary DOM props such as `onClick`. Flag mismatched props (e.g., `onDismiss` passed to the fuselage component or `onClick` passed to the ui-client component) and ensure the usage matches the correct component being imported.

Applied to files:

  • apps/meteor/client/views/admin/workspace/DeploymentCard/DeploymentCard.tsx
📚 Learning: 2025-12-10T21:00:43.645Z
Learnt from: KevLehman
Repo: RocketChat/Rocket.Chat PR: 37091
File: ee/packages/abac/jest.config.ts:4-7
Timestamp: 2025-12-10T21:00:43.645Z
Learning: Adopt the monorepo-wide Jest testMatch pattern: <rootDir>/src/**/*.spec.{ts,js,mjs} (represented here as '**/src/**/*.spec.{ts,js,mjs}') to ensure spec files under any package's src directory are picked up consistently across all packages in the Rocket.Chat monorepo. Apply this pattern in jest.config.ts for all relevant packages to maintain uniform test discovery.

Applied to files:

  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
📚 Learning: 2026-02-24T19:22:48.358Z
Learnt from: juliajforesti
Repo: RocketChat/Rocket.Chat PR: 38493
File: apps/meteor/tests/e2e/omnichannel/omnichannel-send-pdf-transcript.spec.ts:66-67
Timestamp: 2026-02-24T19:22:48.358Z
Learning: In Playwright end-to-end tests (e.g., under apps/meteor/tests/e2e/...), prefer locating elements by translated text (getByText) and ARIA roles (getByRole) over data-qa attributes. If translation values change, update the corresponding test locators accordingly. Never use data-qa locators. This guideline applies to all Playwright e2e test specs in the repository and helps keep tests robust to UI text changes and accessible semantics.

Applied to files:

  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
📚 Learning: 2026-03-06T18:10:15.268Z
Learnt from: tassoevan
Repo: RocketChat/Rocket.Chat PR: 39397
File: packages/gazzodown/src/code/CodeBlock.spec.tsx:47-68
Timestamp: 2026-03-06T18:10:15.268Z
Learning: In tests (especially those using testing-library/dom/jsdom) for Rocket.Chat components, the HTML <code> element has an implicit ARIA role of 'code'. Therefore, screen.getByRole('code') or screen.findByRole('code') will locate <code> elements even without a role attribute. Do not flag findByRole('code') as invalid in reviews; prefer using the implicit role instead of adding role="code" unless necessary for accessibility.

Applied to files:

  • ee/packages/license/src/validation/validateLicenseUrl.spec.ts
🔇 Additional comments (1)
packages/i18n/src/locales/en.i18n.json (1)

2541-2541: LGTM!

Comment thread apps/meteor/app/api/server/lib/getServerInfo.ts
Comment thread apps/meteor/server/startup/serverRunning.ts

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 issues found across 8 files

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="apps/meteor/server/startup/serverRunning.ts">

<violation number="1" location="apps/meteor/server/startup/serverRunning.ts:52">
P2: The displayed Site URL comes from the raw `Site_Url` setting (which may include scheme and trailing slash), but the Hashed Site URL is computed from `License.getWorkspaceUrl()` which strips those. This means the two displayed values won't correspond — the hash isn't of the URL shown next to it. Use `License.getWorkspaceUrl()` for the plain URL as well to keep them consistent.</violation>
</file>

<file name="apps/meteor/app/api/server/lib/getServerInfo.ts">

<violation number="1" location="apps/meteor/app/api/server/lib/getServerInfo.ts:19">
P1: These fields are returned unconditionally, but the `/info` endpoint is unauthenticated (`authRequired: false`). This exposes `workspaceUrl` and `hashedWorkspaceUrl` to any anonymous caller. Move these fields inside the `hasPermissionToViewStatistics` guard or to a privileged endpoint to avoid publicly disclosing workspace identifiers.</violation>
</file>

Reply with feedback, questions, or to request a fix.

Re-trigger cubic

const cloudWorkspaceId = settings.get<string | undefined>('Cloud_Workspace_Id');

return {
workspaceUrl: License.getWorkspaceUrl(),

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1: These fields are returned unconditionally, but the /info endpoint is unauthenticated (authRequired: false). This exposes workspaceUrl and hashedWorkspaceUrl to any anonymous caller. Move these fields inside the hasPermissionToViewStatistics guard or to a privileged endpoint to avoid publicly disclosing workspace identifiers.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/app/api/server/lib/getServerInfo.ts, line 19:

<comment>These fields are returned unconditionally, but the `/info` endpoint is unauthenticated (`authRequired: false`). This exposes `workspaceUrl` and `hashedWorkspaceUrl` to any anonymous caller. Move these fields inside the `hasPermissionToViewStatistics` guard or to a privileged endpoint to avoid publicly disclosing workspace identifiers.</comment>

<file context>
@@ -15,6 +16,8 @@ export async function getServerInfo(userId?: string): Promise<IWorkspaceInfo> {
 	const cloudWorkspaceId = settings.get<string | undefined>('Cloud_Workspace_Id');
 
 	return {
+		workspaceUrl: License.getWorkspaceUrl(),
+		hashedWorkspaceUrl: License.getHashedWorkspaceUrl(),
 		version: getTrimmedServerVersion(),
</file context>

` Platform: ${process.platform}`,
` Process Port: ${process.env.PORT}`,
` Site URL: ${settings.get('Site_Url')}`,
` Site URL: ${settings.get<string>('Site_Url')}`,

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: The displayed Site URL comes from the raw Site_Url setting (which may include scheme and trailing slash), but the Hashed Site URL is computed from License.getWorkspaceUrl() which strips those. This means the two displayed values won't correspond — the hash isn't of the URL shown next to it. Use License.getWorkspaceUrl() for the plain URL as well to keep them consistent.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At apps/meteor/server/startup/serverRunning.ts, line 52:

<comment>The displayed Site URL comes from the raw `Site_Url` setting (which may include scheme and trailing slash), but the Hashed Site URL is computed from `License.getWorkspaceUrl()` which strips those. This means the two displayed values won't correspond — the hash isn't of the URL shown next to it. Use `License.getWorkspaceUrl()` for the plain URL as well to keep them consistent.</comment>

<file context>
@@ -48,7 +49,8 @@ Meteor.startup(async () => {
 			`           Platform: ${process.platform}`,
 			`       Process Port: ${process.env.PORT}`,
-			`           Site URL: ${settings.get('Site_Url')}`,
+			`           Site URL: ${settings.get<string>('Site_Url')}`,
+			`    Hashed Site URL: ${License.getHashedWorkspaceUrl()}`,
 		];
</file context>
Suggested change
` Site URL: ${settings.get<string>('Site_Url')}`,
` Site URL: ${License.getWorkspaceUrl()}`,

@ggazzo
ggazzo merged commit ea1bdb6 into develop Jun 12, 2026
45 of 46 checks passed
@ggazzo
ggazzo deleted the chore/expose-hashed-url branch June 12, 2026 17:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

type: feature Pull requests that introduces new feature

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants