mirror of
https://github.com/paricafe/misskey.git
synced 2025-01-10 12:00:50 -06:00
311c2172d7
This reverts commit 9b5aeb76d8
.
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
export const meta = {
|
|
tags: ['non-productive'],
|
|
|
|
description: 'Endpoint for testing input validation.',
|
|
|
|
requireCredential: false,
|
|
|
|
res: {
|
|
type: 'object',
|
|
properties: {
|
|
id: {
|
|
type: 'string',
|
|
format: 'misskey:id'
|
|
},
|
|
required: {
|
|
type: 'boolean',
|
|
},
|
|
string: {
|
|
type: 'string',
|
|
},
|
|
default: {
|
|
type: 'string',
|
|
},
|
|
nullableDefault: {
|
|
type: 'string',
|
|
default: 'hello',
|
|
nullable: true,
|
|
},
|
|
}
|
|
}
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
required: { type: 'boolean' },
|
|
string: { type: 'string' },
|
|
default: { type: 'string', default: 'hello' },
|
|
nullableDefault: { type: 'string', nullable: true, default: 'hello' },
|
|
id: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['required'],
|
|
} as const;
|
|
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
|
constructor(
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
return ps;
|
|
});
|
|
}
|
|
}
|