Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GPII-3496: Site-config option for auto-login token storage #80

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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