Last change
on this file since 11187 was
9549,
checked in by fschoepp, 12 years ago
|
#1888:
- Removed unnecessary files from web project.
- Cleaned up slave.
|
File size:
403 bytes
|
Rev | Line | |
---|
[8384] | 1 | using System;
|
---|
| 2 | using System.Collections.Generic;
|
---|
| 3 | using System.Linq;
|
---|
| 4 | using System.Web;
|
---|
| 5 | using System.Web.Mvc;
|
---|
| 6 |
|
---|
| 7 | namespace HeuristicLab.Services.Optimization.Web.Controllers {
|
---|
| 8 | public class HomeController : Controller {
|
---|
[8958] | 9 | public ActionResult Index() {
|
---|
[9549] | 10 | return RedirectToAction("Index", "Job");
|
---|
[8384] | 11 | }
|
---|
| 12 |
|
---|
| 13 | public ActionResult About() {
|
---|
| 14 | return View();
|
---|
| 15 | }
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.