Revert "admin/role/userでuseridが指定できるように (#90)"

This reverts commit c492d450e9.
This commit is contained in:
nenohi 2023-06-30 06:35:20 +09:00 committed by まっちゃとーにゅ
parent 760bcf26a0
commit eca41ca472
No known key found for this signature in database
GPG Key ID: 6AFBBF529601C1DB
1 changed files with 0 additions and 5 deletions

View File

@ -28,7 +28,6 @@ export const paramDef = {
roleId: { type: 'string', format: 'misskey:id' },
sinceId: { type: 'string', format: 'misskey:id' },
untilId: { type: 'string', format: 'misskey:id' },
userId: { type: 'string', format: 'misskey:id' },
limit: { type: 'integer', minimum: 1, maximum: 100, default: 10 },
},
required: ['roleId'],
@ -64,10 +63,6 @@ export default class extends Endpoint<typeof meta, typeof paramDef> {
}))
.innerJoinAndSelect('assign.user', 'user');
if (ps.userId != null) {
query.andWhere('assign.userId = :userId', { userId: ps.userId });
}
const assigns = await query
.take(ps.limit)
.getMany();