Replace portal title with entity name

Store a short entity name instead of the full home
heading so orgs can brand portals for sub-entities.
Restore hero i18n composition and keep the English
document title composed from the entity name.

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-07-21 19:06:55 +02:00
parent 0fe814cfe4
commit 0d832508c9
46 changed files with 148 additions and 97 deletions

View File

@@ -61,7 +61,7 @@ func TestCompliancePortal_UpdateProfile(t *testing.T) {
updateCompliancePortal(input: $input) {
compliancePortal {
id
title
entityName
description
websiteUrl
email
@@ -75,7 +75,7 @@ func TestCompliancePortal_UpdateProfile(t *testing.T) {
UpdateCompliancePortal struct {
CompliancePortal struct {
ID string `json:"id"`
Title string `json:"title"`
EntityName string `json:"entityName"`
Description *string `json:"description"`
WebsiteURL *string `json:"websiteUrl"`
Email *string `json:"email"`
@@ -87,7 +87,7 @@ func TestCompliancePortal_UpdateProfile(t *testing.T) {
err = owner.Execute(updateMutation, map[string]any{
"input": map[string]any{
"compliancePortalId": compliancePortalID,
"title": "Acme Security",
"entityName": "Acme Security",
"description": "We keep your data safe.",
"websiteUrl": "https://example.com",
"email": "security@example.com",
@@ -98,7 +98,7 @@ func TestCompliancePortal_UpdateProfile(t *testing.T) {
tc := result.UpdateCompliancePortal.CompliancePortal
assert.Equal(t, compliancePortalID, tc.ID)
assert.Equal(t, "Acme Security", tc.Title)
assert.Equal(t, "Acme Security", tc.EntityName)
require.NotNil(t, tc.Description)
assert.Equal(t, "We keep your data safe.", *tc.Description)
require.NotNil(t, tc.WebsiteURL)