Skip to content

Commit 429c1ec

Browse files
authored
Merge pull request #1 from mtrezza/fix-incorrect-docs
removed unused config parameter from docs
2 parents bb74e37 + 6038022 commit 429c1ec

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Changelog
2+
3+
### master
4+
[Full Changelog](https://github.com/mtrezza/parse-server-api-mail-adapter/compare/1.0.0...master)
5+
6+
- FIX: Removed unused config parameter from docs. [#1](https://github.com/mtrezza/parse-server-api-mail-adapter/pull/1). Thanks to [mtrezza](https://github.com/mtrezza)
7+
8+
### 1.0.0
9+
- NEW: Initial commit.

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,7 @@ const server = new ParseServer({
9595
// A callback that makes the Parse User accessible and allows to return the locale of the user for template localization.
9696
localeCallback: async (user) => {
9797
return user.get('locale');
98-
},
99-
// Is true if localization of template files should be enabled.
100-
enableLocalization: true
98+
}
10199
}
102100
},
103101
// The asynronous callback that contains the composed email payload to be passed on to an 3rd party API. The payload may need to be convert specifically for the API; conversion for common APIs is conveniently available in the `ApiPayloadConverter`. Below is an example for the Mailgun client.

0 commit comments

Comments
 (0)