Files
pedwfrontend/pages/api/notices/index.js
T

18 lines
726 B
JavaScript

const ApiResponse = (req, res) => {
res.statusCode = 200;
res.json({
"value": [
{
"notice_en":
"An update has been made to the portal. If you experience problems, try pressing CTRL, Shift and R in your browser (or CMD and R on a Mac), this should force a refresh of your cache.",
"notice_cy":
"Mae diweddariad wedi'i wneud i'r porth. Os ydych chi'n cael problemau, ceisiwch wasgu CTRL, Shift ac R yn eich porwr (neu CMD ac R ar Mac), dylai hyn orfodi adnewyddiad o'ch storfa.",
"dateFrom": "20/09/2022",
"dateTo": "20/09/2023",
},
],
});
};
export default ApiResponse;