Employee Management System w/ Blazor Server, Entity Framework Core & ASP.NET Core Identity - Part 7

Поділитися
Вставка
  • Опубліковано 31 гру 2024

КОМЕНТАРІ • 9

  • @benjaminvenezia1944
    @benjaminvenezia1944 5 місяців тому +1

    Thank you, exactly what I needed to setup an environment.

  • @musa4747
    @musa4747 5 місяців тому +1

    Hi thank you for this great tutorial. With regards to the auth cookie, how can I ensure that it expires/gets cleared when a user closes the window? For example, if I stop running the app locally on Visual Studio, make some changes and then run again, the page still shows that Im authenticated. When I check the cookie on dev tools under "Expires" it says session. Is there a way to override this using Identity?

    • @thecacademy5376
      @thecacademy5376  5 місяців тому

      Yes you can configure your cookies as you see fit. In the login you can do something like: var result = await _signInManager.PasswordSignInAsync(model.Email, model.Password, isPersistent: false, lockoutOnFailure: false);

  • @mhasimioglu8410
    @mhasimioglu8410 Рік тому

    Thank you for this helpful and great tutorial

  • @jamaal1282
    @jamaal1282 9 місяців тому

    Can you create a CRM Admin panel with authentication, please?

  • @tommcmeekin1
    @tommcmeekin1 Рік тому +1

    Hi, thanks for the great tutorial, it's been really helpful. 😀 I was wondering thou, could you do another video adding Authentication to the project?

    • @thecacademy5376
      @thecacademy5376  Рік тому

      Hey! Thank you 😁😁It already has authentication and authorization though?

  • @niroi3182
    @niroi3182 8 місяців тому +1

    Thanks for the great tutorial !!
    I have a question, why not using Contains() instead of IndexOf()?
    Any reason?

    • @thecacademy5376
      @thecacademy5376  8 місяців тому

      I can't remember the code 😆It's been too long.