strapi-plugin-excel-export-2025-jotamaster
Version:
A strapi plugin used which can be used to download data in xlsx format
30 lines (29 loc) • 508 B
JavaScript
module.exports = [
{
method: "GET",
path: "/get/dropdown/values",
handler: "myController.getDropDownData",
config: {
policies: [],
auth: false,
},
},
{
method: "GET",
path: "/get/table/data",
handler: "myController.getTableData",
config: {
policies: [],
auth: false,
},
},
{
method: "GET",
path: "/download/excel",
handler: "myController.downloadExcel",
config: {
policies: [],
auth: false,
},
},
];