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
/
routes
/
index.js
21 lines
(20 loc)
•
352 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports
=
[ {
method:
"GET"
,
path:
"/"
,
handler:
"myController.index"
,
config:
{
policies:
[],
auth:
false
, }, }, {
method:
"GET"
,
path:
"/get-content-type-data"
,
handler:
"sitemapurl.getDataByContentType"
,
config:
{
policies:
[],
auth:
false
, }, }, ]
;