RemoveAdministrator is an operation to remove an administrator from the set
| 142 | |
| 143 | // RemoveAdministrator is an operation to remove an administrator from the set |
| 144 | type RemoveAdministrator struct { |
| 145 | dag.OpBase |
| 146 | ToRemove []identity.Interface `json:"to_remove"` |
| 147 | } |
| 148 | |
| 149 | func NewRemoveAdministratorOp(author identity.Interface, toRemove ...identity.Interface) *RemoveAdministrator { |
| 150 | return &RemoveAdministrator{ |
nothing calls this directly
no outgoing calls
no test coverage detected