You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LuAuthController.cs 460B

12345678910111213141516
  1. using Luticate2.Auth.Dbo.Users;
  2. using Luticate2.Utils.Controllers;
  3. using Luticate2.Utils.Dbo.Basic;
  4. using Microsoft.Extensions.Options;
  5. namespace Luticate2.Auth.Controllers
  6. {
  7. public class LuAuthController : LuController
  8. {
  9. // protected UsersDbo LoggedUser => LuItems["loggedUser"] as UsersDbo;
  10. public LuAuthController(IOptions<LuUtilsOptionsDbo> luUtilsOptionsDbo) : base(luUtilsOptionsDbo)
  11. {
  12. }
  13. }
  14. }