MM-11348: Add telemetry for advanced permissions. (#9249)

Этот коммит содержится в:
George Goldberg
2018-08-23 11:48:57 +01:00
коммит произвёл GitHub
родитель dc4d009c78
Коммит 8bbee74ed8
6 изменённых файлов: 226 добавлений и 32 удалений

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

@@ -13,6 +13,22 @@ type TeamStore struct {
mock.Mock
}
// AnalyticsGetTeamCountForScheme provides a mock function with given fields: schemeId
func (_m *TeamStore) AnalyticsGetTeamCountForScheme(schemeId string) store.StoreChannel {
ret := _m.Called(schemeId)
var r0 store.StoreChannel
if rf, ok := ret.Get(0).(func(string) store.StoreChannel); ok {
r0 = rf(schemeId)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(store.StoreChannel)
}
}
return r0
}
// AnalyticsTeamCount provides a mock function with given fields:
func (_m *TeamStore) AnalyticsTeamCount() store.StoreChannel {
ret := _m.Called()