()
| 28 | } |
| 29 | |
| 30 | constructor () { |
| 31 | super() |
| 32 | if (!me.useSocialSignOn()) { throw new Error('Social single sign on not supported') } |
| 33 | this.accessToken = storage.load(GPLUS_TOKEN_KEY, true) |
| 34 | } |
| 35 | |
| 36 | token () { return (this.accessToken != null ? this.accessToken.access_token : undefined) } |
| 37 |
nothing calls this directly
no test coverage detected