@studyportals/fawkes 4.0.2-10 → 4.0.2-12
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.
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { DependencyTypes } from '../enums/DependencyTypes';
|
|
2
2
|
import { BaseSitemapUrlGeneratorManager } from './BaseSitemapUrlGeneratorManager';
|
|
3
3
|
// import { Area, AreaAttendance, Attendance, Continent, Country, CountryAttendance, RankedArea, RankedAreaDiscipline, RankedAttendance, RankedAttendanceDiscipline, RankedContinent, RankedContinentAttendance, RankedCountry, RankedCountryAttendance, RankedCountryDiscipline, RankedDiscipline, RankedUnfiltered, Unfiltered } from '../organisations/policies';
|
|
4
|
-
import { Area, RankedArea } from '../organisations/policies';
|
|
4
|
+
import { Area, AreaAttendance, Attendance, Continent, Country, CountryAttendance, RankedArea, RankedAreaDiscipline, RankedAttendance, RankedAttendanceDiscipline, Unfiltered } from '../organisations/policies';
|
|
5
5
|
import { AreaPresenter } from '../presenters/AreaPresenter';
|
|
6
6
|
import { AttendancePresenter } from '../presenters/AttendancePresenter';
|
|
7
7
|
import { ContinentPresenter } from '../presenters/ContinentPresenter';
|
|
@@ -29,16 +29,16 @@ export class OrganisationsSitemapUrlGeneratorManager extends BaseSitemapUrlGener
|
|
|
29
29
|
};
|
|
30
30
|
this.policies = [
|
|
31
31
|
new Area(dependencies),
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
32
|
+
new AreaAttendance(dependencies),
|
|
33
|
+
new Attendance(dependencies),
|
|
34
|
+
new Continent(dependencies),
|
|
35
|
+
new Country(dependencies),
|
|
36
|
+
new CountryAttendance(dependencies),
|
|
37
|
+
new Unfiltered(dependencies),
|
|
38
38
|
new RankedArea(dependencies),
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
new RankedAreaDiscipline(dependencies),
|
|
40
|
+
new RankedAttendance(dependencies),
|
|
41
|
+
new RankedAttendanceDiscipline(dependencies),
|
|
42
42
|
// new RankedContinent(dependencies),
|
|
43
43
|
// new RankedContinentAttendance(dependencies),
|
|
44
44
|
// new RankedCountry(dependencies),
|