Merge branch 'develop' of https://github.com/syuilo/misskey into develop
This commit is contained in:
commit
deda2b2782
100 changed files with 3050 additions and 109 deletions
|
|
@ -3,6 +3,11 @@ import define from '../../define';
|
|||
import { Users } from '../../../../models';
|
||||
|
||||
export const meta = {
|
||||
desc: {
|
||||
'ja-JP': '管理者用のユーザー一覧を表示します。',
|
||||
'en-US': 'Displays a list of users for administrators.'
|
||||
},
|
||||
|
||||
tags: ['admin'],
|
||||
|
||||
requireCredential: true as const,
|
||||
|
|
@ -61,6 +66,16 @@ export const meta = {
|
|||
validator: $.optional.str,
|
||||
default: null
|
||||
}
|
||||
},
|
||||
|
||||
res: {
|
||||
type: 'array' as const,
|
||||
nullable: false as const, optional: false as const,
|
||||
items: {
|
||||
type: 'object' as const,
|
||||
nullable: false as const, optional: false as const,
|
||||
ref: 'User'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue