diff options
author | Michael Muré <batolettre@gmail.com> | 2022-03-10 16:34:57 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2022-03-10 16:37:24 +0100 |
commit | fd14a0763ebf0bcdf6a719aafcbf73f7f5153400 (patch) | |
tree | 8b797bce977386b85ade31c5601d49d6e2ac4336 /bug | |
parent | df55cc49a85eaf3a2d3c2ceb1fbcccac19fa6eb8 (diff) | |
download | git-bug-fd14a0763ebf0bcdf6a719aafcbf73f7f5153400.tar.gz |
entity: allow to resolve identities when numashalling operations
Diffstat (limited to 'bug')
-rw-r--r-- | bug/operation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/operation.go b/bug/operation.go index b3610381..2e86921a 100644 --- a/bug/operation.go +++ b/bug/operation.go @@ -71,7 +71,7 @@ func idOperation(op Operation, base *OpBase) entity.Id { return base.id } -func operationUnmarshaller(author identity.Interface, raw json.RawMessage) (dag.Operation, error) { +func operationUnmarshaller(author identity.Interface, raw json.RawMessage, resolver identity.Resolver) (dag.Operation, error) { var t struct { OperationType OperationType `json:"type"` } |