@studyportals/fawkes 8.0.2-6 → 8.0.2-8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,13 +9,13 @@ import { TuitionFeePresenter } from '../../presenters/TuitionFeePresenter';
|
|
|
9
9
|
export class DegreeAreaTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
10
10
|
name = 'Degree Area Tuition fee Policy';
|
|
11
11
|
description = 'Controls indexing of pages filtered by geographic areas and tuition fees.';
|
|
12
|
-
filterKeys = [FilterKey.AREA, FilterKey.TUITION_FEE];
|
|
12
|
+
filterKeys = [FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE];
|
|
13
13
|
rules = [
|
|
14
14
|
new SingleValueSelectedForFilterRule(FilterKey.AREA),
|
|
15
15
|
new SingleValueSelectedForFilterRule(FilterKey.COUNTRY),
|
|
16
16
|
new SingleValueSelectedForFilterRule(FilterKey.DEGREE_TYPE),
|
|
17
17
|
new SingleValueSelectedForFilterRule(FilterKey.TUITION_FEE),
|
|
18
|
-
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE])
|
|
18
|
+
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE, FilterKey.COUNTRY])
|
|
19
19
|
];
|
|
20
20
|
constructor(dependencies) {
|
|
21
21
|
super(dependencies);
|
|
@@ -42,7 +42,7 @@ Format,
|
|
|
42
42
|
// AttendanceTuitionFee,
|
|
43
43
|
Duration,
|
|
44
44
|
// AttendanceDuration,
|
|
45
|
-
|
|
45
|
+
DegreeAreaTuitionFee,
|
|
46
46
|
// DisciplineContinentAttendance,
|
|
47
47
|
// DegreeContinentTuitionFee,
|
|
48
48
|
// AttendanceFormat,
|
|
@@ -120,7 +120,7 @@ export class ProgrammesSitemapUrlGeneratorManager extends BaseSitemapUrlGenerato
|
|
|
120
120
|
// new DegreeAttendanceTuitionFee(dependencies),
|
|
121
121
|
// new DegreeArea(dependencies),
|
|
122
122
|
// new DegreeTuitionFee(dependencies),
|
|
123
|
-
|
|
123
|
+
new DegreeAreaTuitionFee(dependencies),
|
|
124
124
|
// new DegreeContinentTuitionFee(dependencies),
|
|
125
125
|
// new DegreeDuration(dependencies),
|
|
126
126
|
// new DegreeFormatTuitionFee(dependencies),
|