[MM-28217] Server API to serve up cloud customer information (#15656)

* [MM-28217] Server API to serve up cloud customer information

* Added missing client4 method

* merge'd

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
Devin Binnie
2020-10-05 08:46:52 -04:00
committed by GitHub
parent 375931a4b9
commit ebd3e6aa49
4 changed files with 79 additions and 0 deletions

View File

@@ -13,5 +13,7 @@ type CloudInterface interface {
CreateCustomerPayment() (*model.StripeSetupIntent, *model.AppError)
ConfirmCustomerPayment(*model.ConfirmPaymentMethodRequest) *model.AppError
GetCloudCustomer() (*model.CloudCustomer, *model.AppError)
GetSubscription() (*model.Subscription, *model.AppError)
}