@studyportals/fawkes 7.5.1-3 → 7.5.1-4
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.
|
@@ -2,6 +2,7 @@ import { Area, Attendance, AttendanceDegree, Continent, ContinentTuitionFee, Cou
|
|
|
2
2
|
import { DependencyTypes } from '../enums/DependencyTypes';
|
|
3
3
|
import { Degree } from './policies/Degree';
|
|
4
4
|
import { DisciplineSpecialProgrammes } from './policies/DisciplineSpecialProgrammes';
|
|
5
|
+
import { DegreeAttendanceSpecialProgrammes } from './policies/DegreeAttendanceSpecialProgrammes';
|
|
5
6
|
export class SearchIndexabilityManager {
|
|
6
7
|
policies;
|
|
7
8
|
constructor(portalType, seoInfoBase, filterState, applicationState) {
|
|
@@ -32,6 +33,7 @@ export class SearchIndexabilityManager {
|
|
|
32
33
|
new DegreeCountryAttendance(dependencies),
|
|
33
34
|
new DegreeCountryDiscipline(dependencies),
|
|
34
35
|
new DegreeCountryTuitionFee(dependencies),
|
|
36
|
+
new DegreeAttendanceSpecialProgrammes(dependencies),
|
|
35
37
|
new Discipline(dependencies),
|
|
36
38
|
new DisciplineAttendance(dependencies),
|
|
37
39
|
new DisciplineContinent(dependencies),
|
|
@@ -16,7 +16,7 @@ export class DegreeAreaTuitionFee extends ProgrammesBaseIndexabilityPolicy {
|
|
|
16
16
|
new SingleValueSelectedForFilterRule(FilterKey.COUNTRY),
|
|
17
17
|
new SingleValueSelectedForFilterRule(FilterKey.DEGREE_TYPE),
|
|
18
18
|
new SingleValueSelectedForFilterRule(FilterKey.TUITION_FEE),
|
|
19
|
-
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE]),
|
|
19
|
+
new OnlyFiltersSelectedRule([FilterKey.AREA, FilterKey.COUNTRY, FilterKey.DEGREE_TYPE, FilterKey.TUITION_FEE]),
|
|
20
20
|
new AffordableTuitionFeeRule()
|
|
21
21
|
];
|
|
22
22
|
constructor(dependencies) {
|