When a user logs out, we need to purge but it doesn't seem that you guys support a complete purge...
Is this the only way?
// Purge let count = self?.usersDataProvider.count ?? 0 for index in stride(from: count, to: 0, by: -1) { self?.usersDataProvider.remove(at: index) }