From bb21fae82a21be35d31fab53bb2fd46ac29a68c0 Mon Sep 17 00:00:00 2001 From: antoine37120 Date: Tue, 6 Apr 2021 17:45:26 +0200 Subject: [PATCH] doc: update config.json sample for resource --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c58877a..68c35ea 100644 --- a/README.md +++ b/README.md @@ -525,12 +525,13 @@ Module declaration, on `config.json`: { "type": "resources", "endpoints": { - "get": "http://server.url/resources/", - "post": "http://server.url/resources/", - "types": "http://server.url/keywords/", - "keywords": "http://server.url/types/", - "postTypes": "http://server.url/keywords/", - "postKeywords": "http://server.url/types/" + "get": "https://api.test4.startinblox.com/resources/", + "post": "https://api.test4.startinblox.com/resources/", + "types": "https://api.test4.startinblox.com/types/", + "keywords": "https://api.test4.startinblox.com/keywords/", + "postTypes": "https://api.test4.startinblox.com/types/", + "postKeywords": "https://api.test4.startinblox.com/keywords/", + "uploads": "https://api.test4.startinblox.com/upload/" } } ```