-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwordpress-to-github.config.json
43 lines (43 loc) · 1.34 KB
/
wordpress-to-github.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"$schema": "https://raw.githubusercontent.com/cagov/wordpress-to-github/main/wordpress-to-github/schemas/wordpress-to-github.config.schema.json",
"meta": {
"title": "wordpress-to-github endpoints config file",
"description": "wordpress-to-github endpoints config file"
},
"data": {
"disabled": false,
"PostPath": "posts",
"PagePath": "pages",
"MediaPath": "",
"GeneralFilePath": "config/general/general.json",
"ExcludeProperties": ["content", "_links"],
"HideAuthorName": true,
"ApiRequests": [
{
"Destination": "redirects/redirects.json",
"Source": "/wp-json/redirection/v1/export-public/1/json",
"ExcludeProperties": ["plugin"]
},
{
"Destination": "menu/headerMenu.json",
"Source": "/wp-json/menus/v1/menus/header-menu",
"ExcludeProperties": []
},
{
"Destination": "menu/contentMenu.json",
"Source": "/wp-json/menus/v1/menus/content-menu",
"ExcludeProperties": []
},
{
"Destination": "menu/stateWideFooterMenu.json",
"Source": "/wp-json/menus/v1/menus/footer-menu",
"ExcludeProperties": []
},
{
"Destination": "menu/socialMediaLinksMenu.json",
"Source": "/wp-json/menus/v1/menus/social-media-links-menu",
"ExcludeProperties": []
}
]
}
}