File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
dotcom-rendering/src/server Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ import {
30
30
import {
31
31
handleCricketMatchPage ,
32
32
handleFootballMatchListPage ,
33
+ handleFootballMatchPage ,
34
+ handleFootballTablesPage ,
33
35
} from './handler.sportDataPage.web' ;
34
36
import { recordBaselineCloudWatchMetrics } from './lib/aws/metrics-baseline' ;
35
37
import { getContentFromURLMiddleware } from './lib/get-content-from-url' ;
@@ -78,6 +80,12 @@ export const prodServer = (): void => {
78
80
app . post ( '/TagPageJSON' , logRenderTime , handleTagPageJson ) ;
79
81
app . post ( '/FootballDataPage' , logRenderTime , handleFootballMatchListPage ) ;
80
82
app . post ( '/CricketMatchPage' , logRenderTime , handleCricketMatchPage ) ;
83
+ app . post ( '/FootballTablesPage' , logRenderTime , handleFootballTablesPage ) ;
84
+ app . post (
85
+ '/FootballMatchSummaryPage' ,
86
+ logRenderTime ,
87
+ handleFootballMatchPage ,
88
+ ) ;
81
89
82
90
app . post (
83
91
'/EmailNewsletters' ,
You can’t perform that action at this time.
0 commit comments