Round score
continuous-integration/drone/push Build is passing Details

This commit is contained in:
nemunaire 2022-11-20 13:30:12 +01:00
parent f7d747cd76
commit b88d284859
1 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ package main
import (
"fmt"
"log"
"math"
"net/http"
"strconv"
"strings"
@ -118,7 +119,7 @@ func declareAPIAuthSurveysRoutes(router *gin.RouterGroup) {
if score == nil {
c.JSON(http.StatusOK, map[string]string{"score": "N/A"})
} else {
c.JSON(http.StatusOK, map[string]float64{"score": *score})
c.JSON(http.StatusOK, map[string]float64{"score": math.Round(*score*10) / 10})
}
} else {
c.AbortWithStatusJSON(http.StatusForbidden, gin.H{"errmsg": "Not accessible"})