From 0668266c6bcb21da2d46c90c0e99bc084d44491f Mon Sep 17 00:00:00 2001 From: Augusto Amaral Pereira Date: Mon, 2 Dec 2019 16:19:57 -0300 Subject: [PATCH 1/3] Update config.md --- _includes/rest/config.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/_includes/rest/config.md b/_includes/rest/config.md index 17bd17ade..5eef20960 100644 --- a/_includes/rest/config.md +++ b/_includes/rest/config.md @@ -37,7 +37,7 @@ The response body is a JSON object containing all the configuration parameters i } ``` -You can also update the config by sending a `PUT` request to config URL. Here is a simple example that will update the `Parse.Config`: +You can also update the config by sending a `PUT` request to config URL. Here is a simple example that will update the `Parse.Config` (requires masterKey) :

 curl -X PUT \
@@ -70,3 +70,5 @@ The response body is a JSON object containing a simple boolean value in the `res
   "result": true
 }
 ```
+
+If you want to make any changes on configs without sending the masterkey,  you will need to create a cloud function that makes those changes.

From ab6ebde811a473b328d8d08fbf19ac9aefef6416 Mon Sep 17 00:00:00 2001
From: Augusto Amaral Pereira 
Date: Mon, 2 Dec 2019 20:30:57 -0300
Subject: [PATCH 2/3] Update _includes/rest/config.md

Co-Authored-By: Tom Fox <13188249+TomWFox@users.noreply.github.com>
---
 _includes/rest/config.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_includes/rest/config.md b/_includes/rest/config.md
index 5eef20960..90f869109 100644
--- a/_includes/rest/config.md
+++ b/_includes/rest/config.md
@@ -71,4 +71,4 @@ The response body is a JSON object containing a simple boolean value in the `res
 }
 ```
 
-If you want to make any changes on configs without sending the masterkey,  you will need to create a cloud function that makes those changes.
+If you want to make any changes to configs without sending the `masterkey`, you will need to create a Cloud Function that makes those changes.

From d94478c14c948a4d7b3ba7aa51d7442faf9538ff Mon Sep 17 00:00:00 2001
From: Augusto Amaral Pereira 
Date: Mon, 2 Dec 2019 20:32:32 -0300
Subject: [PATCH 3/3] update based on sugestion

Co-Authored-By: Tom Fox <13188249+TomWFox@users.noreply.github.com>
---
 _includes/rest/config.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_includes/rest/config.md b/_includes/rest/config.md
index 90f869109..931745995 100644
--- a/_includes/rest/config.md
+++ b/_includes/rest/config.md
@@ -37,7 +37,7 @@ The response body is a JSON object containing all the configuration parameters i
 }
 ```
 
-You can also update the config by sending a `PUT` request to config URL. Here is a simple example that will update the `Parse.Config` (requires masterKey) :
+You can also update the config by sending a `PUT` request to config URL. Here is a simple example that will update the `Parse.Config` (requires `masterKey`):
 
 

 curl -X PUT \