Everything is ok but after auth process the _humans list not changing. The last one must add token into list array.
my list array
public List<Human> _humans = new List<Human>
{
new Human ( 1,"test","false","asd" )
};
-- non working method:
[HttpGet]
public async Task<IActionResult> register( Human employee)
{
....
await HttpContext.SignInAsync(principles);
humans.Add(new Human(22,"ASDDD","AAS",employee.token));
return RedirectToAction("Index","Home");
}