Advertisement
Guest User

Untitled

a guest
Oct 16th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.37 KB | None | 0 0
  1.             path("/indicador", () -> {
  2.                 get("/ver-indicadores", IndicadorController.renderVerIndicadores, engine);
  3.                
  4.                 get("/crear-indicador", IndicadorController.serveCrearIndicador,engine);
  5.                 post("/crear-indicador", IndicadorController.handleCrearIndicadorPost, new JsonTransformer());
  6.                
  7.                 get("/aplicar-indicador", IndicadorController.renderAplicarIndicador);
  8.             });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement