chore(client): tweak client

This commit is contained in:
syuilo 2022-06-30 15:32:11 +09:00
parent 6f2d2a71f9
commit 6f3e64f13e
2 changed files with 11 additions and 2 deletions

View file

@ -143,12 +143,11 @@ let suspended = $ref(false);
let isBlocked = $ref(false);
const usersPagination = {
endpoint: 'admin/show-users' as const,
endpoint: iAmModerator ? 'admin/show-users' : 'users' as const,
limit: 10,
params: {
sort: '+updatedAt',
state: 'all',
origin: 'remote',
hostname: props.host,
},
offsetMode: true,