From cec9b3b1a6cee74ad953429566906c63acab869f Mon Sep 17 00:00:00 2001
From: safarte <bchichereau@gmail.com>
Date: Mon, 7 Oct 2019 18:20:02 +0200
Subject: [PATCH] fix

---
 README.md | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/README.md b/README.md
index 64c9843..0c570b3 100644
--- a/README.md
+++ b/README.md
@@ -36,9 +36,9 @@ To post a message from specified user on specified board:
 POST /messages
 body:
 {
-  content: "blabla",
-  userId: 42,
-  boardId: 1
+  "content": "blabla",
+  "userId": 42,
+  "boardId": 1
 }
 ```
 
@@ -48,8 +48,8 @@ To register a new user (returns the user):
 POST /users => Object
 body:
 {
-  username: "blabla",
-  paswword: "verysecure"
+  "username": "blabla",
+  "paswword": "verysecure"
 }
 ```
 
@@ -59,7 +59,7 @@ To login an user (returns a list containing the matching users):
 POST /login => [Object]
 body:
 {
-  username: "blabla",
-  paswword: "verysecure"
+  "username": "blabla",
+  "paswword": "verysecure"
 }
 ```
-- 
GitLab