@@ -184,7 +184,7 @@ This section provides a comprehensive reference for all Parse Dashboard configur
184184Each class in ` columnPreference ` can have an array of column configurations:
185185
186186| Parameter | Type | Optional | Default | Example | Description |
187- | ----------------- | ------- | -------- | ------- | ------------- | -------------------------------------------------- |
187+ | ------------------ | --------- | ---------- | --------- | --------------- | ---------------------------------------------------- |
188188| ` name ` | String | no | - | ` "createdAt" ` | Column/field name. |
189189| ` visible ` | Boolean | yes | ` true ` | ` false ` | Whether the column is visible in the data browser. |
190190| ` 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:
193193##### Scripts Configuration (` apps[].scripts[] ` )
194194
195195| Parameter | Type | Optional | Default | Example | Description |
196- | ------------------------- | ------------------------------------------ | -------- | ------- | --------------- | ------------------------------------------------- |
196+ | -------------------------- | -------------------------------------------- | ---------- | --------- | ----------------- | --------------------------------------------------- |
197197| ` title ` | String | no | - | ` "Delete User" ` | Title in context menu and confirmation dialog. |
198198| ` classes ` | Array< ; String> ; \| Array< ; Object> ; | no | - | ` ["_User"] ` | Classes for which script can run. |
199199| ` 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:
204204##### Info Panel Configuration (` apps[].infoPanel[] ` )
205205
206206| Parameter | Type | Optional | Default | Example | Description |
207- | ------------------- | ------------------- | -------- | ------- | ------------------ | --------------------------------------------- |
207+ | -------------------- | --------------------- | ---------- | --------- | -------------------- | ----------------------------------------------- |
208208| ` title ` | String | no | - | ` "User Details" ` | Panel title. |
209209| ` classes ` | Array< ; String> ; | no | - | ` ["_User"] ` | Classes for which panel is displayed. |
210210| ` cloudCodeFunction ` | String | no | - | ` "getUserDetails" ` | Cloud Function receiving selected object. |
@@ -214,7 +214,7 @@ Each class in `columnPreference` can have an array of column configurations:
214214##### Global Configuration
215215
216216| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
217- | ----------------------- | ------------------- | -------- | ------- | -------------- | ------------------------------ | --------- | ------------------------------------------------------------------------------------- |
217+ | ------------------------ | --------------------- | ---------- | --------- | ---------------- | -------------------------------- | ----------- | -------------------------------------------------------------------------------------- |
218218| ` apps ` | Array< ; Object> ; | no | - | - | ` PARSE_DASHBOARD_CONFIG ` | ` [{...}] ` | Array of apps to manage. |
219219| ` users ` | Array< ; Object> ; | yes | - | - | - | ` [{...}] ` | User accounts for authentication. See [ users table below] ( #user-configuration-users ) . |
220220| ` 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:
226226##### User Configuration (` users[] ` )
227227
228228| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
229- | ----------------- | ------------------- | -------- | -------- | ---------------- | ------------------------------- | -------------------- | -------------------------------------- |
229+ | ------------------ | --------------------- | ---------- | ---------- | ------------------ | --------------------------------- | ---------------------- | ---------------------------------------- |
230230| ` user ` | String | no | - | ` --userId ` | ` PARSE_DASHBOARD_USER_ID ` | ` "admin" ` | Username for authentication. |
231231| ` pass ` | String | no | - | ` --userPassword ` | ` PARSE_DASHBOARD_USER_PASSWORD ` | ` "pass" ` | Password (plain or bcrypt hash). |
232232| ` mfa ` | String | yes | - | - | - | ` "JBSWY3DPEHPK3PXP" ` | MFA secret for TOTP. |
@@ -241,7 +241,7 @@ Each class in `columnPreference` can have an array of column configurations:
241241#### CLI & Server Options
242242
243243| Parameter | Type | Optional | Default | CLI | Env Variable | Example | Description |
244- | --------------------- | ------- | -------- | ------------ | ----------------------- | ---------------------------------------- | --------------- | ------------------------------------------------ |
244+ | ---------------------- | --------- | ---------- | -------------- | ------------------------- | ------------------------------------------ | ----------------- | ------------------------------------------------- |
245245| ` host ` | String | yes | ` "0.0.0.0" ` | ` --host ` | ` HOST ` | ` "127.0.0.1" ` | Host address to bind server. |
246246| ` port ` | Number | yes | ` 4040 ` | ` --port ` | ` PORT ` | ` 8080 ` | Port for dashboard server. |
247247| ` mountPath ` | String | yes | ` "/" ` | ` --mountPath ` | ` MOUNT_PATH ` | ` "/dashboard" ` | Mount path for application. |
0 commit comments