-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathroutes.json
More file actions
40 lines (40 loc) · 872 Bytes
/
routes.json
File metadata and controls
40 lines (40 loc) · 872 Bytes
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
[
{
"path": "/",
"page": "./pages/Home",
"chunk": "main"
},
{
"path": "/help",
"page": "./pages/Help",
"chunk": "main"
},
{
"path": "/ontology/stucco",
"page": "./pages/StuccoOntology"
},
{
"path": "/ontology/stix",
"page": "./pages/StixOntology"
},
{
"path": "/resultslist/search/:key=:value&page=:pNumber&pageSize=:pSize",
"page": "./pages/ResultsList",
"data": {
"vertex": "http://localhost:8080/api/search?q={key:value,page:pNumber,pageSize:pSize}"
},
"chunk": "main"
},
{
"path": "/details/:vertexType=:vertType&:name=:vertName&id=:vertId",
"page": "./pages/Details",
"data": {
"vertex": "http://localhost:8080/api/vertex/vertexType=vertType&name=vertName&id=vertId"
},
"chunk": "main"
},
{
"path": "/error",
"page": "./pages/Error"
}
]