Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
import { UserIps } from "../../../../models/index.js";
|
||||
import define from "../../define.js";
|
||||
export const meta = {
|
||||
tags: [
|
||||
"admin"
|
||||
],
|
||||
requireCredential: true,
|
||||
requireAdmin: true
|
||||
};
|
||||
export const paramDef = {
|
||||
type: "object",
|
||||
properties: {
|
||||
userId: {
|
||||
type: "string",
|
||||
format: "misskey:id"
|
||||
}
|
||||
},
|
||||
required: [
|
||||
"userId"
|
||||
]
|
||||
};
|
||||
export default define(meta, paramDef, async (ps, me)=>{
|
||||
const ips = await UserIps.find({
|
||||
where: {
|
||||
userId: ps.userId
|
||||
},
|
||||
order: {
|
||||
createdAt: "DESC"
|
||||
},
|
||||
take: 30
|
||||
});
|
||||
return ips.map((x)=>({
|
||||
ip: x.ip,
|
||||
createdAt: x.createdAt.toISOString()
|
||||
}));
|
||||
});
|
||||
Reference in New Issue
Block a user