All Downloads are FREE. Search and download functionalities are using the official Maven repository.

pro.taskana.rest.controllers.ViewController Maven / Gradle / Ivy

The newest version!
package pro.taskana.rest.controllers;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

/** The view controller. */
@Controller
public class ViewController {

  @GetMapping(path = {"", "taskana/**"})
  public String index() {
    return "forward:/index.html";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy