Filter inactive users (#36)

pull/37/head
Thomas 3 years ago committed by GitHub
parent 2aff139982
commit 82e159a083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Unreleased
### Added
- Improved the user table of the admin control panel
## 0.89.0 - 21.04.2021
### Added

@ -109,7 +109,12 @@ export class AdminService {
createdAt: true,
id: true
},
take: 20
take: 20,
where: {
NOT: {
Analytics: null
}
}
});
}
}

Loading…
Cancel
Save