fixed stats api view

pull/334/head
Justin Richer 2013-05-02 14:55:37 -04:00
parent a7c92524f3
commit 4276a14978
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@PreAuthorize("hasRole('ROLE_USER')")
@RequestMapping("stats")
@RequestMapping("/api/stats")
public class StatsAPI {
@Autowired
@ -40,7 +40,7 @@ public class StatsAPI {
m.put("entity", e);
return "jsonEntityview";
return "jsonEntityView";
}