Skip to content

Commit

Permalink
[JIRA GEOS-8864] [Community GeoFence] GeoFence Embedded REST endpoint…
Browse files Browse the repository at this point in the history
…s paths should be consistent with std GeoServer behavior
  • Loading branch information
Alessio Fabiani committed Aug 14, 2018
1 parent 8736a8d commit a44b745
Show file tree
Hide file tree
Showing 4 changed files with 203 additions and 134 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@


@RestController @RestController
@ControllerAdvice @ControllerAdvice
@RequestMapping(path = "/geofence" + RestBaseController.ROOT_PATH) @RequestMapping(path = RestBaseController.ROOT_PATH + "/geofence")
public class AdminRulesRestController extends RestBaseController { public class AdminRulesRestController extends RestBaseController {


private AdminRuleAdminService adminService; private AdminRuleAdminService adminService;
Expand Down
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@


@RestController @RestController
@ControllerAdvice @ControllerAdvice
@RequestMapping(path = "/geofence" + RestBaseController.ROOT_PATH) @RequestMapping(path = RestBaseController.ROOT_PATH + "/geofence")
public class RulesRestController extends RestBaseController { public class RulesRestController extends RestBaseController {


private RuleAdminService adminService; private RuleAdminService adminService;
Expand Down

0 comments on commit a44b745

Please sign in to comment.