You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Whether the Parse Dashboard can edit cloud files. If set to true, dashboard can view and edit cloud code files. Do not user on multi-instance servers otherwise your cloud files will be inconsistent.',
Copy file name to clipboardExpand all lines: src/Options/docs.js
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@
17
17
* @property {Number|Boolean} cluster Run with cluster, optionally set the number of processes default to os.cpus().length
18
18
* @property {String} collectionPrefix A collection prefix for the classes
19
19
* @property {CustomPagesOptions} customPages custom pages for password validation and reset
20
+
* @property {DashboardOptions} dashboardOptions Options for Parse dashboard. Caution, do not use cloudFileEdit on a multi-instance production server.
20
21
* @property {Adapter<StorageAdapter>} databaseAdapter Adapter module for the database
21
22
* @property {Any} databaseOptions Options to pass to the mongodb client
22
23
* @property {String} databaseURI The full URI to your database. Supported databases are mongodb or postgres.
@@ -118,3 +119,9 @@
118
119
* @property {String[]} paths An array of paths for which the feature should be enabled. The mount path must not be included, for example instead of `/parse/functions/myFunction` specifiy `functions/myFunction`. The entries are interpreted as regular expression, for example `functions/.*` matches all functions, `jobs/.*` matches all jobs, `classes/.*` matches all classes, `.*` matches all paths.
119
120
* @property {Number} ttl The duration in seconds after which a request record is discarded from the database, defaults to 300s.
120
121
*/
122
+
123
+
/**
124
+
* @interface DashboardOptions
125
+
* @property {Boolean} cloudFileEdit Whether the Parse Dashboard can edit cloud files. If set to true, dashboard can view and edit cloud code files. Do not user on multi-instance servers otherwise your cloud files will be inconsistent.
126
+
* @property {Boolean} cloudFileView Whether the Parse Dashboard can view cloud files.
0 commit comments