File tree 3 files changed +6
-0
lines changed 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ export class Config {
28
28
this . javascriptKey = cacheInfo . javascriptKey ;
29
29
this . dotNetKey = cacheInfo . dotNetKey ;
30
30
this . restAPIKey = cacheInfo . restAPIKey ;
31
+ this . webhookKey = cacheInfo . webhookKey ;
31
32
this . fileKey = cacheInfo . fileKey ;
32
33
this . facebookAppIds = cacheInfo . facebookAppIds ;
33
34
this . allowClientClassCreation = cacheInfo . allowClientClassCreation ;
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ addParseCloud();
76
76
// "clientKey": optional key from Parse dashboard
77
77
// "dotNetKey": optional key from Parse dashboard
78
78
// "restAPIKey": optional key from Parse dashboard
79
+ // "webhookKey": optional key from Parse dashboard
79
80
// "javascriptKey": optional key from Parse dashboard
80
81
// "push": optional key from configure push
81
82
// "sessionLength": optional length in seconds for how long Sessions should be valid for
Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ export default {
86
86
env : "PARSE_SERVER_DOT_NET_KEY" ,
87
87
help : "Key for Unity and .Net SDK"
88
88
} ,
89
+ "webhookKey" : {
90
+ env : "PARSE_SERVER_WEBHOOK_KEY" ,
91
+ help : "Key sent with outgoing webhook calls"
92
+ } ,
89
93
"cloud" : {
90
94
env : "PARSE_SERVER_CLOUD_CODE_MAIN" ,
91
95
help : "Full path to your cloud code main.js"
You can’t perform that action at this time.
0 commit comments