mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-23 06:46:09 +08:00
修复登录日志保存
This commit is contained in:
parent
4244502949
commit
3822c37fa0
|
@ -217,7 +217,7 @@ export default class UserService {
|
||||||
(a, b) => b.info!.timestamp! - a.info!.timestamp!,
|
(a, b) => b.info!.timestamp! - a.info!.timestamp!,
|
||||||
);
|
);
|
||||||
if (result.length > 100) {
|
if (result.length > 100) {
|
||||||
const ids = result.slice(0, result.length - 100).map((x) => x.id!);
|
const ids = result.slice(100).map((x) => x.id!);
|
||||||
await SystemModel.destroy({
|
await SystemModel.destroy({
|
||||||
where: { id: ids },
|
where: { id: ids },
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user