Skip to content

Commit

Permalink
feat(Branch Authoring): Remove branching based on tag option
Browse files Browse the repository at this point in the history
  • Loading branch information
geoffreykwan committed Sep 4, 2024
1 parent 0657813 commit ea3a739
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/app/domain/branchCriteria.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
export const CHOICE_CHOSEN_VALUE = 'choiceChosen';
export const RANDOM_VALUE = 'random';
export const SCORE_VALUE = 'score';
export const TAG_VALUE = 'tag';
export const WORKGROUP_ID_VALUE = 'workgroupId';

export interface BranchCriteria {
Expand All @@ -25,9 +24,5 @@ export const BRANCH_CRITERIA: BranchCriteria[] = [
{
text: $localize`Random`,
value: RANDOM_VALUE
},
{
text: $localize`Tag`,
value: TAG_VALUE
}
];
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import {
CHOICE_CHOSEN_VALUE,
RANDOM_VALUE,
SCORE_VALUE,
TAG_VALUE,
WORKGROUP_ID_VALUE
} from '../../../../app/domain/branchCriteria';
import { CreateBranchParams } from '../../common/CreateBranchParams';
Expand All @@ -16,7 +15,6 @@ export abstract class AbstractBranchAuthoringComponent {
protected readonly CHOICE_CHOSEN_VALUE: string = CHOICE_CHOSEN_VALUE;
protected readonly RANDOM_VALUE: string = RANDOM_VALUE;
protected readonly SCORE_VALUE: string = SCORE_VALUE;
protected readonly TAG_VALUE: string = TAG_VALUE;
protected readonly WORKGROUP_ID_VALUE: string = WORKGROUP_ID_VALUE;

protected allowedComponentTypes: string[] = [];
Expand Down

0 comments on commit ea3a739

Please sign in to comment.