From 313cb75102e42640cc894896986f41db4f635e55 Mon Sep 17 00:00:00 2001 From: "luca.morgese@tno.nl" Date: Tue, 7 May 2024 14:30:06 +0200 Subject: [PATCH] solving lint error due to scheme specification --- routes/reporter/reporter_api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routes/reporter/reporter_api.go b/routes/reporter/reporter_api.go index faffd01d..4b67ae49 100644 --- a/routes/reporter/reporter_api.go +++ b/routes/reporter/reporter_api.go @@ -39,11 +39,11 @@ func (executionInformer *executionInformer) getExecutions(g *gin.Context) { // Returns this to the gin context as a PlaybookExecutionReport object at soarca/model/api/reporter // // @Summary gets information about an ongoing playbook execution -// @Schemes soarca/models/api/PlaybookExecutionEntry +// @Schemes soarca/models/api/PlaybookExecutionReport // @Description return execution information // @Tags reporter // @Produce json -// @success 200 PlaybookExecutionEntry +// @success 200 PlaybookExecutionReport // @error 400 // @Router /report/:id [GET] func (executionInformer *executionInformer) getExecutionReport(g *gin.Context) {