Response of /wiki/home should be a wiki object and not an array

This commit is contained in:
akkee 2018-11-21 07:33:49 +00:00
parent 1fc450d0d1
commit b13b31abb9
1 changed files with 6 additions and 8 deletions

View File

@ -65,14 +65,12 @@ curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/a
Example response:
```json
[
{
"content" : "home page",
"format" : "markdown",
"slug" : "home",
"title" : "home"
}
]
{
"content" : "home page",
"format" : "markdown",
"slug" : "home",
"title" : "home"
}
```
## Create a new wiki page