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
| Object {nickname: "mynickname", email: "my@gmail.com", email_verified: true, app_metadata: Object, iss: "https://myauthsite.auth0.com/"…} | |
| app_metadata: Object | |
| aud: "...auid" | |
| email: "my@gmail.com" | |
| email_verified: true | |
| exp: 1455167800 | |
| iat: 1455131800 | |
| iss: "https://myauthsiete.auth0.com/" | |
| nickname: "mynickname" | |
| sub: "auth0|alongguididhere" |
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
| this.lock.show({ | |
| container: 'hiw-login-container', | |
| authParams: { | |
| device: 'Web App', | |
| scope: 'openid nickname email offline_access app_metadata', // offline_access needed for refresh tokens | |
| response_type: 'code' | |
| } | |
| }, | |
| (err, profile, token) => { | |
| if(err) { |
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
| @Html.EditorFor(x => x.NewRenovationConstruction, new { options = yesNoListItems, @class = "radio-inline", @data_bind = "" }) |