@@ -184,7 +184,7 @@ This section provides a comprehensive reference for all Parse Dashboard configur
184
184
Each class in ` columnPreference ` can have an array of column configurations:
185
185
186
186
| Parameter | Type | Optional | Default | Example | Description |
187
- | ----------------- | ------- | -------- | ------- | ------------- | -------------------------------------------------- |
187
+ | ------------------ | --------- | ---------- | --------- | --------------- | ---------------------------------------------------- |
188
188
| ` name ` | String | no | - | ` "createdAt" ` | Column/field name. |
189
189
| ` visible ` | Boolean | yes | ` true ` | ` false ` | Whether the column is visible in the data browser. |
190
190
| ` preventSort ` | Boolean | yes | ` false ` | ` true ` | Prevent this column from being sortable. |
@@ -193,7 +193,7 @@ Each class in `columnPreference` can have an array of column configurations:
193
193
##### Scripts Configuration (` apps[].scripts[] ` )
194
194
195
195
| Parameter | Type | Optional | Default | Example | Description |
196
- | ------------------------- | ------------------------------------------ | -------- | ------- | --------------- | ------------------------------------------------- |
196
+ | -------------------------- | -------------------------------------------- | ---------- | --------- | ----------------- | --------------------------------------------------- |
197
197
| ` title ` | String | no | - | ` "Delete User" ` | Title in context menu and confirmation dialog. |
198
198
| ` classes ` | Array< ; String> ; \| Array< ; Object> ; | no | - | ` ["_User"] ` | Classes for which script can run. |
199
199
| ` cloudCodeFunction ` | String | no | - | ` "deleteUser" ` | Parse Cloud Function name to execute. |
@@ -204,7 +204,7 @@ Each class in `columnPreference` can have an array of column configurations:
204
204
##### Info Panel Configuration (` apps[].infoPanel[] ` )
205
205
206
206
| Parameter | Type | Optional | Default | Example | Description |
207
- | ------------------- | ------------------- | -------- | ------- | ------------------ | --------------------------------------------- |
207
+ | -------------------- | --------------------- | ---------- | --------- | -------------------- | ----------------------------------------------- |
208
208
| ` title ` | String | no | - | ` "User Details" ` | Panel title. |
209
209
| ` classes ` | Array< ; String> ; | no | - | ` ["_User"] ` | Classes for which panel is displayed. |
210
210
| ` cloudCodeFunction ` | String | no | - | ` "getUserDetails" ` | Cloud Function receiving selected object. |
@@ -214,7 +214,7 @@ Each class in `columnPreference` can have an array of column configurations:
214
214
##### Global Configuration
215
215
216
216
| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
217
- | ----------------------- | ------------------- | -------- | ------- | -------------- | ------------------------------ | --------- | ------------------------------------------------------------------------------------- |
217
+ | ------------------------ | --------------------- | ---------- | --------- | ---------------- | -------------------------------- | ----------- | -------------------------------------------------------------------------------------- |
218
218
| ` apps ` | Array< ; Object> ; | no | - | - | ` PARSE_DASHBOARD_CONFIG ` | ` [{...}] ` | Array of apps to manage. |
219
219
| ` users ` | Array< ; Object> ; | yes | - | - | - | ` [{...}] ` | User accounts for authentication. See [ users table below] ( #user-configuration-users ) . |
220
220
| ` useEncryptedPasswords ` | Boolean | yes | ` false ` | - | - | ` true ` | Use bcrypt hashes instead of plain text passwords. |
@@ -226,7 +226,7 @@ Each class in `columnPreference` can have an array of column configurations:
226
226
##### User Configuration (` users[] ` )
227
227
228
228
| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
229
- | ----------------- | ------------------- | -------- | -------- | ---------------- | ------------------------------- | -------------------- | -------------------------------------- |
229
+ | ------------------ | --------------------- | ---------- | ---------- | ------------------ | --------------------------------- | ---------------------- | ---------------------------------------- |
230
230
| ` user ` | String | no | - | ` --userId ` | ` PARSE_DASHBOARD_USER_ID ` | ` "admin" ` | Username for authentication. |
231
231
| ` pass ` | String | no | - | ` --userPassword ` | ` PARSE_DASHBOARD_USER_PASSWORD ` | ` "pass" ` | Password (plain or bcrypt hash). |
232
232
| ` mfa ` | String | yes | - | - | - | ` "JBSWY3DPEHPK3PXP" ` | MFA secret for TOTP. |
@@ -241,7 +241,7 @@ Each class in `columnPreference` can have an array of column configurations:
241
241
#### CLI & Server Options
242
242
243
243
| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
244
- | --------------------- | ------- | -------- | ------------ | ----------------------- | ---------------------------------------- | --------------- | ------------------------------------------------ |
244
+ | ---------------------- | --------- | ---------- | -------------- | ------------------------- | ------------------------------------------ | ----------------- | ------------------------------------------------- |
245
245
| ` host ` | String | yes | ` "0.0.0.0" ` | ` --host ` | ` HOST ` | ` "127.0.0.1" ` | Host address to bind server. |
246
246
| ` port ` | Number | yes | ` 4040 ` | ` --port ` | ` PORT ` | ` 8080 ` | Port for dashboard server. |
247
247
| ` mountPath ` | String | yes | ` "/" ` | ` --mountPath ` | ` MOUNT_PATH ` | ` "/dashboard" ` | Mount path for application. |
0 commit comments