fix(测试计划): 修复测试计划分享时的不能点击接口场景的问题

--bug=1011579 --user=刘瑞斌 【测试跟踪】-测试计划 测试报告 分享的链接 打开后 点击接口场景的用例 点击报错 https://www.tapd.cn/55049933/s/1123872
This commit is contained in:
CaptainB 2022-03-22 19:31:35 +08:00 committed by shiziyuan9527
parent 1b17215a6c
commit 51e48ba337

View File

@ -169,7 +169,7 @@ public class ShareController {
@GetMapping("/api/scenario/report/get/{shareId}/{reportId}")
public APIScenarioReportResult get(@PathVariable String shareId, @PathVariable String reportId) {
shareInfoService.validate(shareId, reportId);
shareInfoService.validateExpired(shareId); // 测试计划和接口都会用这个
return apiScenarioReportService.get(reportId);
}