From d1fb7dca61377ff9f6c2134282354bd094a4d986 Mon Sep 17 00:00:00 2001 From: dblythy Date: Sun, 18 Sep 2022 15:13:27 +1000 Subject: [PATCH 1/3] docs: describe additional database options --- src/Options/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options/index.js b/src/Options/index.js index c298bc78e2..15b68b854a 100644 --- a/src/Options/index.js +++ b/src/Options/index.js @@ -92,7 +92,7 @@ export interface ParseServerOptions { /* Options to pass to the database client :ENV: PARSE_SERVER_DATABASE_OPTIONS */ databaseOptions: ?DatabaseOptions; - /* Adapter module for the database */ + /* Adapter module for the database. Additional options are passed directly to the database client.*/ databaseAdapter: ?Adapter; /* Full path to your cloud code main.js */ cloud: ?string; From a9c54775cb00b40b37d47b00f283b47f4c189b90 Mon Sep 17 00:00:00 2001 From: dblythy Date: Sun, 18 Sep 2022 15:15:36 +1000 Subject: [PATCH 2/3] Update index.js --- src/Options/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options/index.js b/src/Options/index.js index 15b68b854a..73aeb9cfb4 100644 --- a/src/Options/index.js +++ b/src/Options/index.js @@ -92,7 +92,7 @@ export interface ParseServerOptions { /* Options to pass to the database client :ENV: PARSE_SERVER_DATABASE_OPTIONS */ databaseOptions: ?DatabaseOptions; - /* Adapter module for the database. Additional options are passed directly to the database client.*/ + /* Adapter module for the database. Additional options are passed directly to the database client */ databaseAdapter: ?Adapter; /* Full path to your cloud code main.js */ cloud: ?string; From c701f05764f1e6e393c01f60e73ae038f6ddf8ce Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Sun, 18 Sep 2022 18:43:20 +0200 Subject: [PATCH 3/3] Update src/Options/index.js --- src/Options/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Options/index.js b/src/Options/index.js index 73aeb9cfb4..23d266cb51 100644 --- a/src/Options/index.js +++ b/src/Options/index.js @@ -92,7 +92,7 @@ export interface ParseServerOptions { /* Options to pass to the database client :ENV: PARSE_SERVER_DATABASE_OPTIONS */ databaseOptions: ?DatabaseOptions; - /* Adapter module for the database. Additional options are passed directly to the database client */ + /* Adapter module for the database; any options that are not explicitly described here are passed directly to the database client. */ databaseAdapter: ?Adapter; /* Full path to your cloud code main.js */ cloud: ?string;