()
| 184 | } |
| 185 | |
| 186 | func (uaa UAARepository) RefreshAuthToken() (string, error) { |
| 187 | return uaa.RefreshToken(uaa.config.AccessToken()) |
| 188 | } |
| 189 | |
| 190 | func (uaa UAARepository) RefreshToken(t string) (string, error) { |
| 191 | tokenStr := strings.TrimPrefix(t, "bearer ") |
nothing calls this directly
no test coverage detected