17 lines
747 B
JavaScript
17 lines
747 B
JavaScript
const ApiResponse = (req, res) => {
|
|
res.statusCode = 200;
|
|
res.json({
|
|
"value": [
|
|
{
|
|
"notice_en":
|
|
"We have updated the Planning Casework service. If you are unable to view your recent activity, press Ctrl, Shift and R to refresh your browser (or Cmd and R if you are using a Mac).",
|
|
"notice_cy":
|
|
"Rydym wedi diweddaru'r gwasanaeth Gwaith Achos Cynllunio. Os nad ydych yn gallu gweld eich gweithgarwch diweddar, pwyswch Ctrl, Shift ac R i adnewyddu eich porwr (neu Cmd ac R os ydych yn defnyddio Mac).",
|
|
"dateFrom": "20/09/2022",
|
|
"dateTo": "31/12/2022",
|
|
},
|
|
],
|
|
});
|
|
};
|
|
export default ApiResponse;
|