diff --git a/libs/common-types/src/lib/con-profile/enums/mentoring-topic.enum.ts b/libs/common-types/src/lib/con-profile/enums/mentoring-topic.enum.ts index c6c6b5985..321b5de1d 100644 --- a/libs/common-types/src/lib/con-profile/enums/mentoring-topic.enum.ts +++ b/libs/common-types/src/lib/con-profile/enums/mentoring-topic.enum.ts @@ -16,6 +16,7 @@ export enum MentoringTopic { 'iot' = 'iot', 'computerNetworking' = 'computerNetworking', 'blockchain' = 'blockchain', + 'cybersecurity' = 'cybersecurity', 'productManagement' = 'productManagement', 'projectManagement' = 'projectManagement', 'digitalMarketing' = 'digitalMarketing', diff --git a/libs/data-access/src/lib/types/types.ts b/libs/data-access/src/lib/types/types.ts index 79b6ac78d..fdd941ce2 100644 --- a/libs/data-access/src/lib/types/types.ts +++ b/libs/data-access/src/lib/types/types.ts @@ -486,6 +486,7 @@ export enum MentoringTopic { CareerOrientationAndPlanning = 'careerOrientationAndPlanning', CodingChallengePreparation = 'codingChallengePreparation', ComputerNetworking = 'computerNetworking', + Cybersecurity = 'cybersecurity', DataAnalytics = 'dataAnalytics', DevOpsCloud = 'devOpsCloud', DigitalMarketing = 'digitalMarketing', diff --git a/libs/shared-config/src/lib/config.ts b/libs/shared-config/src/lib/config.ts index 26cf4614f..d50fc3c15 100644 --- a/libs/shared-config/src/lib/config.ts +++ b/libs/shared-config/src/lib/config.ts @@ -60,6 +60,7 @@ export const CATEGORIES = [ group: 'softwareEngineering', }, { id: 'blockchain', label: 'Blockchain', group: 'softwareEngineering' }, + { id: 'cybersecurity', label: 'Cybersecurity', group: 'softwareEngineering' }, { id: 'productManagement', label: 'Product Management', diff --git a/schema.graphql b/schema.graphql index 9f3266c70..d07b49001 100644 --- a/schema.graphql +++ b/schema.graphql @@ -464,6 +464,7 @@ enum MentoringTopic { careerOrientationAndPlanning codingChallengePreparation computerNetworking + cybersecurity dataAnalytics devOpsCloud digitalMarketing