18 lines
612 B
JavaScript
18 lines
612 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 please refresh your browser.",
|
|
"notice_cy":
|
|
"Rydym wedi diweddaru'r gwasanaeth Gwaith Achos Cynllunio. Os na allwch weld eich gweithgarwch diweddar adnewyddwch eich porwr.",
|
|
|
|
"dateFrom": "20/09/2022",
|
|
"dateTo": "20/09/2023",
|
|
},
|
|
],
|
|
});
|
|
};
|
|
export default ApiResponse;
|