Thomas
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
12 additions and
1 deletions
-
CHANGELOG.md
-
apps/api/src/app/admin/admin.service.ts
|
|
@ -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 |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|