|
@@ -32,7 +32,6 @@ public class EventTrackController {
|
|
|
|
|
|
|
|
|
@PermitAll
|
|
|
- @PreAuthenticated
|
|
|
@GetMapping("/list")
|
|
|
@Operation(summary = "获取规则配置跟踪列表")
|
|
|
public CommonResult<List<EventTrackUrlRespVO>> list() {
|
|
@@ -40,14 +39,12 @@ public class EventTrackController {
|
|
|
}
|
|
|
|
|
|
@PermitAll
|
|
|
- @PreAuthenticated
|
|
|
@PostMapping("/click")
|
|
|
@Operation(summary = "点击")
|
|
|
public CommonResult<List<EventTrackPointRespVO>> click(@RequestParam("url") String url) throws Exception {
|
|
|
return success(service.click(url));
|
|
|
}
|
|
|
|
|
|
- @PermitAll
|
|
|
@PreAuthenticated
|
|
|
@GetMapping("/get/mark/task")
|
|
|
@Operation(summary = "获取标记事件任务")
|
|
@@ -56,7 +53,6 @@ public class EventTrackController {
|
|
|
}
|
|
|
|
|
|
|
|
|
- @PermitAll
|
|
|
@PreAuthenticated
|
|
|
@GetMapping("/get/url/list")
|
|
|
@Operation(summary = "获取事件地址列表")
|