-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
17 lines (16 loc) · 736 Bytes
/
config.js
File metadata and controls
17 lines (16 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Update these values to match those of your Server URL, DriveWorks Group Alias
// and Alias of the DriveApp you wish to be rendered.
const config = {
serverUrl: "",
groupAlias: "",
driveAppAlias: "",
// (Optional) Set DriveApp ping interval - in seconds
// A DriveApp will timeout after a configured period of inactivity (see DriveWorksConfigUser.xml).
// This function prevents a DriveApp timing out as long as the page is in view.
// Disable the ping by changing the setting to 0
driveAppPingInterval: 0,
// (Optional) Configure 'Run' view
run: {
showWarningOnExit: false, // Toggle warning dialog when exiting "Run" view with potentially unsaved changes (where supported)
},
};