The REST API key was improperly inferred from environment (#4292)
This commit is contained in:
@@ -120,7 +120,7 @@ module.exports.ParseServerOptions = {
|
|||||||
"help": "Key for Unity and .Net SDK"
|
"help": "Key for Unity and .Net SDK"
|
||||||
},
|
},
|
||||||
"restAPIKey": {
|
"restAPIKey": {
|
||||||
"env": "PARSE_SERVER_REST_APIKEY",
|
"env": "PARSE_SERVER_REST_API_KEY",
|
||||||
"help": "Key for REST calls"
|
"help": "Key for REST calls"
|
||||||
},
|
},
|
||||||
"webhookKey": {
|
"webhookKey": {
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ export interface ParseServerOptions {
|
|||||||
javascriptKey: ?string;
|
javascriptKey: ?string;
|
||||||
/* Key for Unity and .Net SDK */
|
/* Key for Unity and .Net SDK */
|
||||||
dotNetKey: ?string;
|
dotNetKey: ?string;
|
||||||
/* Key for REST calls */
|
/* Key for REST calls
|
||||||
|
:ENV: PARSE_SERVER_REST_API_KEY */
|
||||||
restAPIKey: ?string;
|
restAPIKey: ?string;
|
||||||
/* Key sent with outgoing webhook calls */
|
/* Key sent with outgoing webhook calls */
|
||||||
webhookKey: ?string;
|
webhookKey: ?string;
|
||||||
|
|||||||
Reference in New Issue
Block a user