"feat: add EventItem, EventReview models with seed data and mock files, update User and Event schemas"

This commit is contained in:
louiscklaw
2025-06-03 15:29:05 +08:00
parent a0a4ffcb4e
commit 24920fb313
52 changed files with 2140 additions and 56 deletions

View File

@@ -0,0 +1,26 @@
###
GET http://localhost:7272/api/user
###
GET http://localhost:7272/api/user?userId=cmbfvonhl000011ykdi345yc9
###
POST http://localhost:7272/api/user?userId=1
content-type: application/json
{
"data":{"name": "John Doe"}
}
###
PUT http://localhost:7272/api/user?userId=1
content-type: application/json
{
"data": {"name": "John Doe"}
}
###
DELETE http://localhost:7272/api/user?userId=1