mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-07 15:20:25 +08:00
25 lines
568 B
Go
25 lines
568 B
Go
package messages
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
)
|
|
|
|
type ReadAllAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *ReadAllAction) RunPost(params struct{}) {
|
|
// 创建日志
|
|
this.CreateLog(oplogs.LevelInfo, "将所有消息置为已读")
|
|
|
|
_, err := this.RPC().MessageRPC().UpdateAllMessagesRead(this.AdminContext(), &pb.UpdateAllMessagesReadRequest{})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
this.Success()
|
|
}
|