aboutsummaryrefslogtreecommitdiff
path: root/server/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'server/main.go')
-rw-r--r--server/main.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/server/main.go b/server/main.go
index 8b400fe..e6c70e6 100644
--- a/server/main.go
+++ b/server/main.go
@@ -81,9 +81,10 @@ func getAllPeople(ctx *gin.Context) {
func registerPerson(ctx *gin.Context) {
person := db.Person {
- Name: ctx.Query("name"),
- Phone: ctx.Query("phone"),
- Email: ctx.Query("email"),
+ Name: ctx.Query("name"),
+ Address: ctx.Query("address"),
+ Phone: ctx.Query("phone"),
+ Email: ctx.Query("email"),
}
db.RegisterPerson(person)