Api endpoint is with slash at the end (#846)

```
$ curl -H "Content-Type: application/json" -H "Authorization: Bearer SECRET" http://localhost:8123/api; echo ''
404: Not Found
$ curl -H "Content-Type: application/json" -H "Authorization: Bearer SECRET" http://localhost:8123/api/; echo ''
{"message": "API running."}
$
```
This commit is contained in:
Ivan Bessarabov 2021-03-11 14:48:36 +03:00 committed by GitHub
parent 223dde2deb
commit 24d04f8474
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,7 +61,7 @@ Successful calls will return status code 200 or 201. Other status codes that can
The API supports the following actions:
<ApiEndpoint path="/api" method="get">
<ApiEndpoint path="/api/" method="get">
Returns a message if the API is up and running.