@@ -32,6 +32,7 @@ The full documentation for Parse Server is available in the [wiki](https://githu
32
32
- [ Basic Options] ( #basic-options )
33
33
- [ Client Key Options] ( #client-key-options )
34
34
- [ Email Verification & Password Reset] ( #email-verification-and-password-reset )
35
+ - [ Custom Pages] ( #custom-pages )
35
36
- [ Using Environment Variables] ( #using-environment-variables-to-configure-parse-server )
36
37
- [ Available Adapters] ( #available-adapters )
37
38
- [ Configuring File Adapters] ( #configuring-file-adapters )
@@ -288,6 +289,7 @@ var server = ParseServer({
288
289
```
289
290
290
291
You can also use other email adapters contributed by the community such as:
292
+ - [ parse-smtp-template (Multi Language and Multi Template)] ( https://www.npmjs.com/package/parse-smtp-template )
291
293
- [ parse-server-postmark-adapter] ( https://www.npmjs.com/package/parse-server-postmark-adapter )
292
294
- [ parse-server-sendgrid-adapter] ( https://www.npmjs.com/package/parse-server-sendgrid-adapter )
293
295
- [ parse-server-mandrill-adapter] ( https://www.npmjs.com/package/parse-server-mandrill-adapter )
@@ -298,6 +300,27 @@ You can also use other email adapters contributed by the community such as:
298
300
- [ simple-parse-smtp-adapter] ( https://www.npmjs.com/package/simple-parse-smtp-adapter )
299
301
- [ parse-server-generic-email-adapter] ( https://www.npmjs.com/package/parse-server-generic-email-adapter )
300
302
303
+ ### Custom Pages
304
+
305
+ It’s possible to change the default pages of the app and redirect the user to another path or domain.
306
+
307
+ ``` js
308
+ var server = ParseServer ({
309
+ ... otherOptions,
310
+
311
+ customPages {
312
+ passwordResetSuccess: " http://yourapp.com/passwordResetSuccess" ,
313
+ verifyEmailSuccess: " http://yourapp.com/verifyEmailSuccess" ,
314
+ parseFrameURL: " http://yourapp.com/parseFrameURL" ,
315
+ linkSendSuccess: " http://yourapp.com/linkSendSuccess" ,
316
+ linkSendFail: " http://yourapp.com/linkSendFail" ,
317
+ invalidLink: " http://yourapp.com/invalidLink" ,
318
+ invalidVerificationLink: " http://yourapp.com/invalidVerificationLink" ,
319
+ choosePassword: " http://yourapp.com/choosePassword"
320
+ }
321
+ })
322
+ ```
323
+
301
324
### Using environment variables to configure Parse Server
302
325
303
326
You may configure the Parse Server using environment variables:
0 commit comments