show grantee and rank info in tokens list
This commit is contained in:
parent
fe53c16b23
commit
23e69eccbb
5 changed files with 86 additions and 18 deletions
|
|
@ -22670,7 +22670,7 @@ export type operations = {
|
|||
/** @description OK (with results) */
|
||||
200: {
|
||||
content: {
|
||||
'application/json': {
|
||||
'application/json': ({
|
||||
/** Format: misskey:id */
|
||||
id: string;
|
||||
name?: string;
|
||||
|
|
@ -22679,7 +22679,10 @@ export type operations = {
|
|||
/** Format: date-time */
|
||||
lastUsedAt?: string;
|
||||
permission: string[];
|
||||
}[];
|
||||
grantees: components['schemas']['UserLite'][];
|
||||
/** @enum {string|null} */
|
||||
rank: 'admin' | 'mod' | 'user';
|
||||
})[];
|
||||
};
|
||||
};
|
||||
/** @description Client error */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue