Browse Source

Filter inactive users (#36)

pull/37/head
Thomas 4 years ago
committed by GitHub
parent
commit
82e159a083
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      CHANGELOG.md
  2. 7
      apps/api/src/app/admin/admin.service.ts

6
CHANGELOG.md

@ -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/), 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). 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 ## 0.89.0 - 21.04.2021
### Added ### Added

7
apps/api/src/app/admin/admin.service.ts

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

Loading…
Cancel
Save