chore: fix method
This commit is contained in:
parent
bacb7c4ae6
commit
61be7fd46c
|
|
@ -206,7 +206,7 @@ impl Client {
|
||||||
) -> Result<Vec<SubscriptionPlanDetail>, AppResponseError> {
|
) -> Result<Vec<SubscriptionPlanDetail>, AppResponseError> {
|
||||||
let url = format!("{}/billing/api/v1/subscriptions", self.base_billing_url(),);
|
let url = format!("{}/billing/api/v1/subscriptions", self.base_billing_url(),);
|
||||||
let resp = self
|
let resp = self
|
||||||
.http_client_with_auth(Method::POST, &url)
|
.http_client_with_auth(Method::GET, &url)
|
||||||
.await?
|
.await?
|
||||||
.send()
|
.send()
|
||||||
.await?;
|
.await?;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue