Filter inactive users (#36)

This commit is contained in:
Thomas
2021-04-22 20:55:05 +02:00
committed by GitHub
parent 2aff139982
commit 82e159a083
2 changed files with 12 additions and 1 deletions

View File

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