Commit a1cf89b7 authored by Łukasz Magiera's avatar Łukasz Magiera

coreapi/unixfs: Use path instead of raw hash in AddEvent

License: MIT
Signed-off-by: default avatarŁukasz Magiera <magik6k@gmail.com>
parent 3956a72f
...@@ -46,6 +46,7 @@ type ResolvedPath interface { ...@@ -46,6 +46,7 @@ type ResolvedPath interface {
// cidRoot := {"A": {"/": cidA }} // cidRoot := {"A": {"/": cidA }}
// //
// And resolve paths: // And resolve paths:
//
// * "/ipfs/${cidRoot}" // * "/ipfs/${cidRoot}"
// * Calling Cid() will return `cidRoot` // * Calling Cid() will return `cidRoot`
// * Calling Root() will return `cidRoot` // * Calling Root() will return `cidRoot`
......
...@@ -9,10 +9,9 @@ import ( ...@@ -9,10 +9,9 @@ import (
ipld "gx/ipfs/QmcKKBwfz6FyQdHR2jsXrrF6XeSBXYL86anmWNewpFpoF5/go-ipld-format" ipld "gx/ipfs/QmcKKBwfz6FyQdHR2jsXrrF6XeSBXYL86anmWNewpFpoF5/go-ipld-format"
) )
// TODO: ideas on making this more coreapi-ish without breaking the http API?
type AddEvent struct { type AddEvent struct {
Name string Name string
Hash string `json:",omitempty"` Path ResolvedPath `json:",omitempty"`
Bytes int64 `json:",omitempty"` Bytes int64 `json:",omitempty"`
Size string `json:",omitempty"` Size string `json:",omitempty"`
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment