Skip to content

Commit cf2eb7e

Browse files
committed
Corrects typo in attribute name
1 parent dbeeb42 commit cf2eb7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DigitalLearningSolutions.Web/Helpers/ExternalApis/TableauConnectionHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public string GetTableauJwt(string email)
4242
{ "exp", new DateTimeOffset(DateTime.UtcNow.AddMinutes(5)).ToUnixTimeSeconds() },
4343
{ "sub", user },
4444
{ "scp", new[] { "tableau:views:embed" } },
45-
{ "ExernalUserEmail", new [] { email } }
45+
{ "ExternalUserEmail", email }
4646
};
4747
var token = new JwtSecurityToken(header, payload);
4848
var tokenHandler = new JwtSecurityTokenHandler();

0 commit comments

Comments
 (0)