Commit 1889f951e47739c84552fd11554b14400e74f1e7
Add msg property to issue
Charles Lehner committed on 4/11/2016, 3:16:18 AMParent: 22e129844192c0ac7cf466780ed41402f70a273c
Files changed
README.md | changed |
index.js | changed |
README.md | ||
---|---|---|
@@ -55,9 +55,10 @@ | ||
55 | 55 | project: Ref?, |
56 | 56 | projectAuthor: FeedRef?, |
57 | 57 | created_at: number, |
58 | 58 | updated_at: number, |
59 | - open: boolean | |
59 | + open: boolean, | |
60 | + msg: Msg, | |
60 | 61 | } |
61 | 62 | ``` |
62 | 63 | |
63 | 64 | - `id`: id of the issue |
@@ -67,8 +68,10 @@ | ||
67 | 68 | - `title`: title of the issue |
68 | 69 | - `open`: whether the issue is open (true) or closed (false) |
69 | 70 | - `project`: the project that the issue is for |
70 | 71 | - `projectAuthor`: the author of the project |
72 | +- `msg`: ssb message object that created the issue (with | |
73 | + `.key` and `.value`). | |
71 | 74 | |
72 | 75 | #### createFeedStream: source |
73 | 76 | |
74 | 77 | Get a stream of issues |
Built with git-ssb-web