Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion siteconfig.json5
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,10 @@
},

// URL to the the place serving the survey triggers data. Note that it should return triggers in JSON format
surveyTriggersUrl: "http://survey.gpii.net/survey-triggers.json"
surveyTriggersUrl: "http://survey.gpii.net/survey-triggers.json",

// Store the last login token, and automatically login when morphic is next started.
// Warning: This will cause the user's login token to be stored on the machine. This should be false for shared or
// public access computers.
saveLogin: false
}
4 changes: 4 additions & 0 deletions src/main/siteConfigurationHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ fluid.defaults("gpii.app.siteConfigurationHandler", {
distributeAboutDialogConfig: {
record: "{that}.options.siteConfig.aboutDialog",
target: "{app aboutDialog}.options.siteConfig"
},
distributeSaveLogin: {
record: "{that}.options.siteConfig.saveLogin",
target: "{/ gpii.userListeners.autoLogin}.options.saveLastLogin"
}
}
});
Expand Down