fix(backend): fix admin/get-user-ips error
This commit is contained in:
parent
3c5bcdd7b3
commit
6b7efb6f1d
|
@ -41,7 +41,7 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
|
|
||||||
return ips.map(x => ({
|
return ips.map(x => ({
|
||||||
ip: x.ip,
|
ip: x.ip,
|
||||||
createdAt: this.idService.parse(x.id).date.toISOString(),
|
createdAt: x.createdAt.toISOString(),
|
||||||
}));
|
}));
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue