Added an optional before-login microflow (for custom SSO solutions)#8
Open
tieniber wants to merge 2 commits intomendixlabs:masterfrom
Open
Added an optional before-login microflow (for custom SSO solutions)#8tieniber wants to merge 2 commits intomendixlabs:masterfrom
tieniber wants to merge 2 commits intomendixlabs:masterfrom
Conversation
Adding the following properties to the widget: - A Boolean that will convert the given username to lowercase before authenticating. Useful running against a case sensitive database - An optional microflow to run before login. Put this widget in a dataview and pass the microflow login credentials, and perform any custom solution you need (test project implements a basic custom SSO solution). Return true to continue authenticating normally, false to fail. - Related properties for mapping the username and password to attributes of the dataview entity
Author
|
This PR also includes the "Username ToLowerCase" feature discussed on the forum: https://mxforum.mendix.com/questions/12482/Make-username-toLowerCase-on-login |
Contributor
|
Can you check the merge conflicts first? Also... the Username ToLowerCase feature has already been build in (Check the Casehandling tab in the Modeler options) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Added a set of attributes that let you put this widget in the context of a "Login" entity, with a username and password entity. This would allow you to intercept a login request and make a call out to an external authentication/authorization service, which you could then sync up with your internal database, and proceed with the login process.