Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Controllers/HomeController.cs @ 8958

Last change on this file since 8958 was 8958, checked in by fschoepp, 11 years ago

#1888:

  • Added a administrator web interface for job management
  • Fixed Hive Client (PluginValidator) to find the assemblies within the right directories
  • Reorganized controller classes (Folders HL, Interfaces, Azure)
  • You may now successfully schedule and run jobs with the web ui.
File size: 412 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Web;
5using System.Web.Mvc;
6
7namespace HeuristicLab.Services.Optimization.Web.Controllers {
8  public class HomeController : Controller {
9    public ActionResult Index() {     
10      return RedirectToAction("Index", "Optimization");     
11    }
12
13    public ActionResult About() {
14      return View();
15    }
16  }
17}
Note: See TracBrowser for help on using the repository browser.