Skip to content

Commit

Permalink
Update src/Options/index.js
Browse files Browse the repository at this point in the history
Co-authored-by: Manuel <[email protected]>
Signed-off-by: Mattia Faraci <[email protected]>
  • Loading branch information
mattia1208 and mtrezza authored Nov 11, 2023
1 parent 1950772 commit f292d28
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Options/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ export interface ParseServerOptions {
databaseOptions: ?DatabaseOptions;
/* Adapter module for the database; any options that are not explicitly described here are passed directly to the database client. */
databaseAdapter: ?Adapter<StorageAdapter>;
/* Disable case insensitivity (collation) on queries and indexes, needed if you use MongoDB serverless or AWS DocumentDB. */
disableCollation: ?boolean;
/* Optional. If set to `true`, the collation rule of case comparison for queries and indexes is enabled. Enable this option to run Parse Server with MongoDB Atlas Serverless or AWS Amazon DocumentDB. If `false`, the collation rule of case comparison is disabled. Default is `false`.
:DEFAULT: false */
enableCollationCaseComparison: ?boolean;
/* Transform Email to lowercase on create/update/login/signup. On queries client needs to ensure to send Email in lowercase format. */
transformEmailToLowerCase: ?boolean;
/* Transform Username to lowercase on create/update/login/signup. On queries client needs to ensure to send Username in lowercase format. */
Expand Down

0 comments on commit f292d28

Please sign in to comment.