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.
|
- using Microsoft.AspNetCore.Mvc;
- using System.Net.Mail;
- using System.Threading.Tasks;
- using Volo.Abp.AspNetCore.Mvc;
- using Volo.Abp.BackgroundJobs;
-
- namespace Himp.TaskScheduling.Controllers;
-
- public class HomeController : AbpController
- {
- public HomeController()
- {
- }
-
- public async Task<ActionResult> Index()
- {
- //await _backgroundJobManager.EnqueueAsync(
- // new WorkflowArgs
- // {
- // ParamConfigs = new System.Collections.Generic.List<ParamConfigDto>()
- // }
- //); ;
- return Redirect("~/swagger");
- }
- }
|