mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-24 17:59:07 +01:00
38 lines
488 B
Plaintext
38 lines
488 B
Plaintext
{
|
|
summary: '',
|
|
description: '',
|
|
tags: [
|
|
'admin',
|
|
],
|
|
requireCredential: true,
|
|
req: {
|
|
type: 'object',
|
|
properties: {
|
|
userId: {
|
|
type: 'string',
|
|
format: 'misskey:id',
|
|
},
|
|
},
|
|
required: [
|
|
'userId',
|
|
],
|
|
},
|
|
res: {
|
|
type: 'object',
|
|
optional: false,
|
|
nullable: false,
|
|
properties: {
|
|
password: {
|
|
type: 'string',
|
|
optional: false,
|
|
nullable: false,
|
|
minLength: 8,
|
|
maxLength: 8,
|
|
},
|
|
},
|
|
required: [
|
|
'password',
|
|
],
|
|
},
|
|
errors: {},
|
|
} |