(rev: any)
| 79 | return true; |
| 80 | } |
| 81 | async _createClearAuthorship(rev: any){ |
| 82 | const atext = await this._pad.getInternalRevisionAText(rev); |
| 83 | |
| 84 | // build clearAuthorship changeset |
| 85 | const builder = new Builder(atext.text.length); |
| 86 | builder.keepText(atext.text, [['author', '']], this._pad.pool); |
| 87 | const changeset = builder.toString(); |
| 88 | |
| 89 | return changeset; |
| 90 | } |
| 91 | |
| 92 | async _createClearStartAtext(rev: any){ |
| 93 | // get the atext of this revision |
no test coverage detected