(authors: PadAuthor[])
| 120 | return {changesets, authors}; |
| 121 | } |
| 122 | _addAuthors(authors: PadAuthor[]){ |
| 123 | // add to array if not in the array |
| 124 | authors.forEach((author) => { |
| 125 | if (this._authors.indexOf(author) === -1) { |
| 126 | this._authors.push(author); |
| 127 | } |
| 128 | }); |
| 129 | } |
| 130 | async _createDiffAtext(){ |
| 131 | const bulkSize = 100; |
| 132 |