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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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'
}); });
} }