| 50 | QString AuthProfile::GetRefreshToken() { return this->refreshToken; }; |
| 51 | |
| 52 | QString AuthProfile::GetURL() const |
| 53 | { |
| 54 | return "https://" + host + ":" + port + endpoint; |
| 55 | }; |
| 56 | |
| 57 | void AuthProfile::SetAccessToken(const QString &token) { this->accessToken = token; }; |
| 58 |
no outgoing calls
no test coverage detected