From 4276a149783786ef35bde7717c07c8e40d9efbd4 Mon Sep 17 00:00:00 2001 From: Justin Richer Date: Thu, 2 May 2013 14:55:37 -0400 Subject: [PATCH] fixed stats api view --- .../src/main/java/org/mitre/openid/connect/web/StatsAPI.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openid-connect-server/src/main/java/org/mitre/openid/connect/web/StatsAPI.java b/openid-connect-server/src/main/java/org/mitre/openid/connect/web/StatsAPI.java index b59a0c410..70df71dfb 100644 --- a/openid-connect-server/src/main/java/org/mitre/openid/connect/web/StatsAPI.java +++ b/openid-connect-server/src/main/java/org/mitre/openid/connect/web/StatsAPI.java @@ -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"; }