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.

LuUsersController.cs 475B

1234567891011121314151617181920
  1. using Luticate2.Utils.Controllers;
  2. using Luticate2.Utils.Dbo.Basic;
  3. using Microsoft.AspNetCore.Mvc;
  4. using Microsoft.Extensions.Options;
  5. namespace Luticate2.Auth.Controllers
  6. {
  7. [Route("luticate/users")]
  8. public class LuUsersController : LuController
  9. {
  10. public LuUsersController(IOptions<LuUtilsOptionsDbo> luUtilsOptionsDbo) : base(luUtilsOptionsDbo)
  11. {
  12. }
  13. public string Get()
  14. {
  15. return "users";
  16. }
  17. }
  18. }