Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- 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");
- }
- }
|