diff --git a/apps/api/src/app/workflows-v2/mappers/notification-template-mapper.ts b/apps/api/src/app/workflows-v2/mappers/notification-template-mapper.ts index cd74b71cbf8..d0a8fec886e 100644 --- a/apps/api/src/app/workflows-v2/mappers/notification-template-mapper.ts +++ b/apps/api/src/app/workflows-v2/mappers/notification-template-mapper.ts @@ -97,7 +97,7 @@ function toStepResponseDto(step: NotificationStepEntity): StepResponseDto { /** * Builds a slug for a step based on the step name, the short prefix and the internal ID. - * @returns The slug for the entity, example: slug: "workflow-name_wf_fUm4PnsdYYttxSqf" + * @returns The slug for the entity, example: slug: "workflow-name_wf_AbC1Xyz9KlmNOpQr" */ function buildSlug(entityName: string, shortIsPrefix: ShortIsPrefixEnum, internalId: string): Slug { return `${slugifyName(entityName)}${SLUG_DELIMITER}${shortIsPrefix}${encodeBase62(internalId)}`;