🎨 Add a kernel internal api /api/av/getAttributeViewKeysByID

Signed-off-by: Daniel <845765@qq.com>
This commit is contained in:
Daniel 2025-09-30 21:39:00 +08:00
parent 01c3412aaa
commit 6ef3b66d5c
No known key found for this signature in database
GPG key ID: 86211BA83DF03017

View file

@ -240,7 +240,7 @@ func getAttributeViewKeysByID(c *gin.Context) {
keyIDsArg := arg["keyIDs"].([]interface{})
var keyIDs []string
for _, v := range keyIDsArg {
keyIDs = append(keyIDs, v.(string
keyIDs = append(keyIDs, v.(string))
}
ret.Data = model.GetAttributeViewKeysByID(avID, keyIDs...)
}