Этот коммит содержится в:
Conor Macpherson
2022-12-30 15:04:30 -05:00
родитель b3b39e4f15
Коммит 84fe5514fc
3 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@@ -20,6 +20,10 @@ import (
func (a *App) getTrueUpProfile() (*model.TrueUpReviewProfile, error) {
license := a.Channels().License()
if license == nil {
return nil, model.NewAppError("requestTrueUpReview", "api.license.true_up_review.license_required", nil, "Could not get the total active users count", http.StatusInternalServerError)
}
// Customer Info & Usage Analytics
activeUserCount, err := a.Srv().Store().Status().GetTotalActiveUsersCount()
if err != nil {