Add check to not send license expiration email when in Cloud (#27308)

Этот коммит содержится в:
Nick Misasi
2024-06-10 11:20:44 -04:00
коммит произвёл GitHub
родитель 4acc4796ed
Коммит b86ba51efd

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

@@ -1351,6 +1351,10 @@ func (s *Server) doLicenseExpirationCheck() {
return
}
if license.IsCloud() {
return
}
users, err := s.Store().User().GetSystemAdminProfiles()
if err != nil {
mlog.Error("Failed to get system admins for license expired message from Mattermost.")