From 828b64a2fae1eaa81e457a6b94892c449f718eb4 Mon Sep 17 00:00:00 2001 From: Hien Nguyen Date: Fri, 19 Sep 2025 17:29:04 +0700 Subject: [PATCH 1/2] Update README.md Update readme for store dashboard settings https://github.com/parse-community/parse-dashboard/issues/2555 Signed-off-by: Hien Nguyen --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dc5b5a287..1f7536284 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,9 @@ Parse Dashboard is continuously tested with the most recent releases of Node.js | `apps.scripts.executionBatchSize` | Integer | yes | `1` | `10` | The batch size with which a script should be executed on all selected objects. For example, with 50 objects selected, a batch size of 10 means the script will run on 10 objects in parallel, running a total of 5 batches in serial. | | `apps.scripts.showConfirmationDialog` | Bool | yes | `false` | `true` | Is `true` if a confirmation dialog should be displayed before the script is executed, `false` if the script should be executed immediately. | | `apps.scripts.confirmationDialogStyle` | String | yes | `info` | `critical` | The style of the confirmation dialog. Valid values: `info` (blue style), `critical` (red style). | -| `apps.cloudConfigHistoryLimit` | Integer | yes | `100` | `100` | The number of historic values that should be saved in the Cloud Config change history. Valid values: `0`...`Number.MAX_SAFE_INTEGER`. | +| `apps.cloudConfigHistoryLimit` | Integer | yes | `100` | `100` | The number of historic values that should be saved in the Cloud Config change history. Valid values: `0`...`Number.MAX_SAFE_INTEGER`. +| `apps.config` | Object | yes | - | `{ ... }` | App Settings option to store dashboard settings on server. +| `apps.config.className` | String | yes | _ | `DashboardConfig` | The table name will be used to save/migrate the dashboard config | ### File @@ -1475,4 +1477,4 @@ As of April 5, 2017, Parse, LLC has transferred this code to the parse-community [license-svg]: https://img.shields.io/badge/license-BSD-lightgrey.svg [license-link]: LICENSE -[open-collective-link]: https://opencollective.com/parse-server \ No newline at end of file +[open-collective-link]: https://opencollective.com/parse-server From e4f2d17090e4d90ba41ac52cb676575c41772b77 Mon Sep 17 00:00:00 2001 From: Hien Nguyen Date: Fri, 19 Sep 2025 17:36:43 +0700 Subject: [PATCH 2/2] Update README.md chore(docs): update README with dashboard config options Signed-off-by: Hien Nguyen --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1f7536284..69324ac98 100644 --- a/README.md +++ b/README.md @@ -164,8 +164,8 @@ Parse Dashboard is continuously tested with the most recent releases of Node.js | `apps.scripts.showConfirmationDialog` | Bool | yes | `false` | `true` | Is `true` if a confirmation dialog should be displayed before the script is executed, `false` if the script should be executed immediately. | | `apps.scripts.confirmationDialogStyle` | String | yes | `info` | `critical` | The style of the confirmation dialog. Valid values: `info` (blue style), `critical` (red style). | | `apps.cloudConfigHistoryLimit` | Integer | yes | `100` | `100` | The number of historic values that should be saved in the Cloud Config change history. Valid values: `0`...`Number.MAX_SAFE_INTEGER`. -| `apps.config` | Object | yes | - | `{ ... }` | App Settings option to store dashboard settings on server. -| `apps.config.className` | String | yes | _ | `DashboardConfig` | The table name will be used to save/migrate the dashboard config | +| `apps.config` | Object | yes | - | `{ ... }` | App settings option used to store dashboard configuration on the server. +| `apps.config.className` | String | yes | _ | `DashboardConfig` | The table name used to save and migrate the dashboard configuration. | ### File