Commit 9ac56c23 by shenjunjie

Merge branch 'feature' into 'release'

事件分享页移除权限限制3

See merge request !191
parents 225196fc f988264d
...@@ -237,6 +237,7 @@ public class AppEventController extends BaseController { ...@@ -237,6 +237,7 @@ public class AppEventController extends BaseController {
@ApiOperation("前台事件库-事件详情-渠道发声") @ApiOperation("前台事件库-事件详情-渠道发声")
@GetMapping("/detail/channel-voices") @GetMapping("/detail/channel-voices")
@Auth(role = RoleEnum.NO_AUTHORISE)
public ResponseResult eventChannelVoices(@RequestParam(value = "eventId") String eventId, public ResponseResult eventChannelVoices(@RequestParam(value = "eventId") String eventId,
@RequestParam(value = "type", defaultValue = "重要渠道") String type, @RequestParam(value = "type", defaultValue = "重要渠道") String type,
@RequestParam(value = "page", defaultValue = "1") int page, @RequestParam(value = "page", defaultValue = "1") int page,
...@@ -257,7 +258,6 @@ public class AppEventController extends BaseController { ...@@ -257,7 +258,6 @@ public class AppEventController extends BaseController {
@ApiOperation("前台事件库-事件详情-持续事件") @ApiOperation("前台事件库-事件详情-持续事件")
@GetMapping("/detail/continue-event") @GetMapping("/detail/continue-event")
@Auth(role = RoleEnum.NO_AUTHORISE)
public ResponseResult continueEvent(@RequestParam(value = "eventId") String eventId){ public ResponseResult continueEvent(@RequestParam(value = "eventId") String eventId){
eventService.continueEvent(eventId); eventService.continueEvent(eventId);
return ResponseResult.success(); return ResponseResult.success();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment