SetSignatureRequired is an operation to set/unset if git signature are required.
| 74 | |
| 75 | // SetSignatureRequired is an operation to set/unset if git signature are required. |
| 76 | type SetSignatureRequired struct { |
| 77 | dag.OpBase |
| 78 | Value bool `json:"value"` |
| 79 | } |
| 80 | |
| 81 | func NewSetSignatureRequired(author identity.Interface, value bool) *SetSignatureRequired { |
| 82 | return &SetSignatureRequired{ |
nothing calls this directly
no outgoing calls
no test coverage detected