fix http method regression (#6066)

This commit is contained in:
Denys Vuika
2020-08-25 11:27:57 +01:00
committed by GitHub
parent f499020e8c
commit 93b51b266c

View File

@@ -71,7 +71,7 @@ export class OAuth2Service {
post<T>(opts: OAuth2RequestParams): Observable<T> { post<T>(opts: OAuth2RequestParams): Observable<T> {
return this.request({ return this.request({
...opts, ...opts,
httpMethod: 'PUT' httpMethod: 'POST'
}); });
} }