Skip to content

Commit b1a0565

Browse files
committed
feat: add new list contents
1 parent 2c84428 commit b1a0565

File tree

2 files changed

+33
-3
lines changed

2 files changed

+33
-3
lines changed

assets/js/data/educations.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"message": "OK",
3+
"data": [
4+
{
5+
"name": "Amikom Yogyakarta University",
6+
"description": "Information System - GPA 3.85",
7+
"start_date": "2019",
8+
"end_date": "2023"
9+
},
10+
{
11+
"name": "Dicoding Academy",
12+
"description": "Training as a frontend and backend developer",
13+
"start_date": "February 2022",
14+
"end_date": "July 2021"
15+
},
16+
{
17+
"name": "PT Git Solution",
18+
"description": "Bootcamp as a web developer",
19+
"start_date": "September 2021",
20+
"end_date": "December 2021"
21+
}
22+
]
23+
}

assets/js/data/listContents.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,28 @@
55
"name": "experiences",
66
"url": "/experiences",
77
"description": "return all my experiences",
8-
"status": "200",
8+
"status": 200,
99
"method": "GET"
1010
},
1111
{
1212
"name": "projects",
1313
"url": "/projects",
1414
"description": "return all my projects",
15-
"status": "422",
15+
"status": 422,
1616
"method": "GET"
1717
},
1818
{
1919
"name": "reachMeOut",
2020
"url": "/reach-me-out",
2121
"description": "return all my contacts",
22-
"status": "200",
22+
"status": 200,
23+
"method": "GET"
24+
},
25+
{
26+
"name": "educations",
27+
"url": "/educations",
28+
"description": "return all my educations",
29+
"status": 200,
2330
"method": "GET"
2431
}
2532
]

0 commit comments

Comments
 (0)