AddAdministrator is an operation to add a new administrator in the set
| 105 | |
| 106 | // AddAdministrator is an operation to add a new administrator in the set |
| 107 | type AddAdministrator struct { |
| 108 | dag.OpBase |
| 109 | ToAdd []identity.Interface `json:"to_add"` |
| 110 | } |
| 111 | |
| 112 | func NewAddAdministratorOp(author identity.Interface, toAdd ...identity.Interface) *AddAdministrator { |
| 113 | return &AddAdministrator{ |
nothing calls this directly
no outgoing calls
no test coverage detected