File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
dotcom-rendering/src/server Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ export const devServer = (): Handler => {
99
99
return handleAppsBlocks ( req , res , next ) ;
100
100
case 'EditionsCrossword' :
101
101
return handleEditionsCrossword ( req , res , next ) ;
102
- case 'FootballDataPage ' :
102
+ case 'FootballMatchListPage ' :
103
103
return handleFootballMatchListPage ( req , res , next ) ;
104
104
case 'FootballTablesPage' :
105
105
return handleFootballTablesPage ( req , res , next ) ;
Original file line number Diff line number Diff line change @@ -79,6 +79,11 @@ export const prodServer = (): void => {
79
79
app . post ( '/TagPage' , logRenderTime , handleTagPage ) ;
80
80
app . post ( '/TagPageJSON' , logRenderTime , handleTagPageJson ) ;
81
81
app . post ( '/FootballDataPage' , logRenderTime , handleFootballMatchListPage ) ;
82
+ app . post (
83
+ '/FootballMatchListPage' ,
84
+ logRenderTime ,
85
+ handleFootballMatchListPage ,
86
+ ) ;
82
87
app . post ( '/CricketMatchPage' , logRenderTime , handleCricketMatchPage ) ;
83
88
app . post ( '/FootballTablesPage' , logRenderTime , handleFootballTablesPage ) ;
84
89
app . post (
You can’t perform that action at this time.
0 commit comments