File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -356,6 +356,22 @@ module.exports.CustomPagesOptions = {
356
356
env : 'PARSE_SERVER_CUSTOM_PAGES_INVALID_LINK' ,
357
357
help : 'invalid link page path' ,
358
358
} ,
359
+ invalidVerificationLink : {
360
+ env : 'PARSE_SERVER_CUSTOM_PAGES_INVALID_VERIFICATION_LINK' ,
361
+ help : 'invalid verification link page path' ,
362
+ } ,
363
+ linkSendFail : {
364
+ env : 'PARSE_SERVER_CUSTOM_PAGES_LINK_SEND_FAIL' ,
365
+ help : 'verification link send fail page path' ,
366
+ } ,
367
+ linkSendSuccess : {
368
+ env : 'PARSE_SERVER_CUSTOM_PAGES_LINK_SEND_SUCCESS' ,
369
+ help : 'verification link send success page path' ,
370
+ } ,
371
+ parseFrameURL : {
372
+ env : 'PARSE_SERVER_CUSTOM_PAGES_PARSE_FRAME_URL' ,
373
+ help : 'for masking user-facing pages' ,
374
+ } ,
359
375
passwordResetSuccess : {
360
376
env : 'PARSE_SERVER_CUSTOM_PAGES_PASSWORD_RESET_SUCCESS' ,
361
377
help : 'password reset success page path' ,
Original file line number Diff line number Diff line change 68
68
* @interface CustomPagesOptions
69
69
* @property {String } choosePassword choose password page path
70
70
* @property {String } invalidLink invalid link page path
71
+ * @property {String } invalidVerificationLink invalid verification link page path
72
+ * @property {String } linkSendFail verification link send fail page path
73
+ * @property {String } linkSendSuccess verification link send success page path
74
+ * @property {String } parseFrameURL for masking user-facing pages
71
75
* @property {String } passwordResetSuccess password reset success page path
72
76
* @property {String } verifyEmailSuccess verify email success page path
73
77
*/
Original file line number Diff line number Diff line change @@ -185,10 +185,18 @@ export interface CustomPagesOptions {
185
185
invalidLink: ?string ;
186
186
/* verify email success page path */
187
187
verifyEmailSuccess: ?string ;
188
+ /* invalid verification link page path */
189
+ invalidVerificationLink: ?string ;
190
+ /* verification link send success page path */
191
+ linkSendSuccess: ?string ;
192
+ /* verification link send fail page path */
193
+ linkSendFail: ?string ;
188
194
/* choose password page path */
189
195
choosePassword: ?string ;
190
196
/* password reset success page path */
191
197
passwordResetSuccess: ?string ;
198
+ /* for masking user-facing pages */
199
+ parseFrameURL: ?string ;
192
200
}
193
201
194
202
export interface LiveQueryOptions {
You can’t perform that action at this time.
0 commit comments