peer is a public data

This commit is contained in:
mr 2025-02-04 09:00:55 +01:00
parent 22d15fe395
commit bf114b39b7

View File

@ -37,6 +37,10 @@ type Peer struct {
FailedExecution []PeerExecution `json:"failed_execution" bson:"failed_execution"` // FailedExecution is the list of failed executions, to be retried
}
func (ao *Peer) VerifyAuth(request *tools.APIRequest) bool {
return true
}
// AddExecution adds an execution to the list of failed executions
func (ao *Peer) AddExecution(exec PeerExecution) {
found := false