Skip to content

Commit

Permalink
fix(api): c spell validation
Browse files Browse the repository at this point in the history
  • Loading branch information
djabarovgeorge committed Oct 24, 2024
1 parent fc4db4c commit caf8f8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)}`;
Expand Down

0 comments on commit caf8f8a

Please sign in to comment.