Changeset 43c9090 for src/main/java/finki/it/terapijamkbackend/spring/controllers/WebController.java
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/finki/it/terapijamkbackend/spring/controllers/WebController.java
r743de55 r43c9090 1 1 package finki.it.terapijamkbackend.spring.controllers; 2 2 3 import finki.it.terapijamkbackend.spring.services.UserService; 4 import org.springframework.beans.factory.annotation.Autowired; 3 5 import org.springframework.stereotype.Controller; 4 6 import org.springframework.web.bind.annotation.GetMapping; 5 7 8 6 9 @Controller 7 10 public class WebController { 8 9 11 @GetMapping(path="/") 10 12 public String index() { … … 51 53 return "html/adminCoupons"; 52 54 } 55 56 @GetMapping(path="/userInfo.html") 57 public String userInfo() { 58 return "html/userInfo"; 59 } 53 60 }
Note:
See TracChangeset
for help on using the changeset viewer.