UNPKG
strapi-export-collection-lead
Version:
latest (1.0.0)
1.0.0
Effortlessly export Strapi collection data to CSV with filters like date range.
strapi-export-collection-lead
/
plugins
/
export-lead
/
server
/
controllers
/
my-controller.js
11 lines
(9 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
module
.
exports
=
(
{ strapi }
) =>
({
index
(
ctx
) { ctx.
body
= strapi .
plugin
(
"sitemap"
) .
service
(
"myService"
) .
getWelcomeMessage
(); }, });