diff --git a/apps/backoffice/src/app/features/license-review/config/license-types.ts b/apps/backoffice/src/app/features/license-review/config/license-types.ts index 39894ea44..d72191936 100644 --- a/apps/backoffice/src/app/features/license-review/config/license-types.ts +++ b/apps/backoffice/src/app/features/license-review/config/license-types.ts @@ -84,6 +84,11 @@ const PRESENTATION: Record = { // Person-centric: no company entity, no capital threshold, no staff roles. detailSections: ['overview', 'documents'], }, + VESSEL_REGISTRATION: { + key: 'VESSEL_REGISTRATION', + icon: IconAnchor, + detailSections: DEFAULT_SECTIONS, + }, }; /** Falls back to a generic presentation so an unseeded type still renders. */ diff --git a/apps/backoffice/src/app/i18n/locales/am.ts b/apps/backoffice/src/app/i18n/locales/am.ts index 3589f415f..61f016e84 100644 --- a/apps/backoffice/src/app/i18n/locales/am.ts +++ b/apps/backoffice/src/app/i18n/locales/am.ts @@ -53,6 +53,7 @@ export const am: Translations = { details: "ዝርዝር", licenceReview: "የፈቃድ ማመልከቻዎች", vesselRegistrationHeadDashboard: "የመርከብ ምዝገባ ኃላፊ ዳሽቦርድ", + vesselRegistrationApplicationQueue: "የመርከብ ምዝገባ ወረፋ", vesselRegistrationQueue: "የመርከብ መዝገብ", vesselFormBuilder: "የመርከብ ቅጽ መገንቢያ", vesselRegistrationReport: "የመርከብ ምዝገባ ሪፖርት", diff --git a/apps/backoffice/src/app/i18n/locales/en.ts b/apps/backoffice/src/app/i18n/locales/en.ts index 99632a56d..bb17e49c4 100644 --- a/apps/backoffice/src/app/i18n/locales/en.ts +++ b/apps/backoffice/src/app/i18n/locales/en.ts @@ -55,6 +55,7 @@ export const en = { userManagement: 'User Management', seamanBookQueue: 'Seaman Book Queue', vesselRegistrationHeadDashboard: 'Vessel Registration Head Dashboard', + vesselRegistrationApplicationQueue: 'Vessel Registration Queue', vesselRegistrationQueue: 'Vessel Register', vesselFormBuilder: 'Vessel Form Builder', vesselRegistrationReport: 'Vessel Registration Report', diff --git a/apps/backoffice/src/app/layouts/nav-config.ts b/apps/backoffice/src/app/layouts/nav-config.ts index fb061c7a1..2dc323c96 100644 --- a/apps/backoffice/src/app/layouts/nav-config.ts +++ b/apps/backoffice/src/app/layouts/nav-config.ts @@ -121,6 +121,7 @@ export const NAV_SECTIONS: NavSection[] = [ { label: 'nav.groupVessels', items: [ + { to: '/licence-review/type/VESSEL_REGISTRATION', label: 'nav.vesselRegistrationApplicationQueue', icon: IconAnchor }, { to: '/vessel-registration-queue', label: 'nav.vesselRegistrationQueue', icon: IconAnchor }, { to: '/vessel-ownership-transfer', label: 'nav.ownershipTransferQueue', icon: IconFileDescription, soon: true }, { to: '/vessel-registration-queue/new', label: 'nav.vesselFormBuilder', icon: IconFilePlus, soon: true },