-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Description
Config.cs generates a test user with username scott, password password. This is unable to login. Invalid username or password error.
internal class Users
{
public static List Get()
{
return new List
{
new TestUser
{
SubjectId = "5BE86359-073C-434B-AD2D-A3932222DABE",
Username = "scott",
Password = "password",
Claims = new List
{
new Claim(JwtClaimTypes.Email, "[email protected]"),
new Claim(JwtClaimTypes.Role, "admin")
}
}
};
}
}
Metadata
Metadata
Assignees
Labels
No labels