You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
576 B
23 lines
576 B
3 years ago
|
package handler
|
||
|
|
||
|
import (
|
||
|
"github.com/analogj/scrutiny/webapp/backend/pkg/database"
|
||
|
"github.com/gin-gonic/gin"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
"net/http"
|
||
|
)
|
||
|
|
||
|
func DeleteDevice(c *gin.Context) {
|
||
|
logger := c.MustGet("LOGGER").(logrus.FieldLogger)
|
||
|
deviceRepo := c.MustGet("DEVICE_REPOSITORY").(database.DeviceRepo)
|
||
|
|
||
|
err := deviceRepo.DeleteDevice(c, c.Param("wwn"))
|
||
|
if err != nil {
|
||
|
logger.Errorln("An error occurred while deleting device", err)
|
||
|
c.JSON(http.StatusInternalServerError, gin.H{"success": false})
|
||
|
return
|
||
|
}
|
||
|
|
||
|
c.JSON(http.StatusOK, gin.H{"success": true})
|
||
|
}
|