bulk actions for peers and users (#492)

This commit is contained in:
Christoph Haas
2026-01-04 23:21:35 +01:00
parent 0a88fe745f
commit d4968dcd6c
15 changed files with 1329 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
package model
type BulkPeerRequest struct {
Identifiers []string `json:"Identifiers" binding:"required"`
Reason string `json:"Reason"`
}
type BulkUserRequest struct {
Identifiers []string `json:"Identifiers" binding:"required"`
}