()
| 97 | } |
| 98 | |
| 99 | onAcceptAndSavePatch () { |
| 100 | const commitMessage = this.patch.get('commitMessage') || '' |
| 101 | return this.acceptPatch(true, commitMessage) |
| 102 | } |
| 103 | |
| 104 | acceptPatch (save, commitMessage) { |
| 105 | if (save == null) { save = false } |
nothing calls this directly
no test coverage detected