()
| 113 | } |
| 114 | |
| 115 | signOut() { |
| 116 | Cookies.remove('access_token'); |
| 117 | GitHubApi.auth(undefined) |
| 118 | .then(() => { |
| 119 | this.props.setUser(undefined); |
| 120 | }) |
| 121 | .then(() => this.props.setScratchPapers([])); |
| 122 | } |
| 123 | |
| 124 | loadScratchPapers() { |
| 125 | const per_page = 100; |