Skip to content

Commit 9ae472b

Browse files
Add tables and match summary to prod server (#13834)
1 parent 0e03169 commit 9ae472b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dotcom-rendering/src/server/server.prod.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ import {
3030
import {
3131
handleCricketMatchPage,
3232
handleFootballMatchListPage,
33+
handleFootballMatchPage,
34+
handleFootballTablesPage,
3335
} from './handler.sportDataPage.web';
3436
import { recordBaselineCloudWatchMetrics } from './lib/aws/metrics-baseline';
3537
import { getContentFromURLMiddleware } from './lib/get-content-from-url';
@@ -78,6 +80,12 @@ export const prodServer = (): void => {
7880
app.post('/TagPageJSON', logRenderTime, handleTagPageJson);
7981
app.post('/FootballDataPage', logRenderTime, handleFootballMatchListPage);
8082
app.post('/CricketMatchPage', logRenderTime, handleCricketMatchPage);
83+
app.post('/FootballTablesPage', logRenderTime, handleFootballTablesPage);
84+
app.post(
85+
'/FootballMatchSummaryPage',
86+
logRenderTime,
87+
handleFootballMatchPage,
88+
);
8189

8290
app.post(
8391
'/EmailNewsletters',

0 commit comments

Comments
 (0)