parent
6b897e562a
commit
952789cc1e
102 changed files with 853 additions and 966 deletions
|
@ -10,7 +10,6 @@ import { User } from '../../../../models/entities/user';
|
|||
import { Users, DriveFiles, Notes } from '../../../../models';
|
||||
import { DriveFile } from '../../../../models/entities/drive-file';
|
||||
import { Note } from '../../../../models/entities/note';
|
||||
import { types, bool } from '../../../../misc/schema';
|
||||
|
||||
let maxNoteTextLength = 1000;
|
||||
|
||||
|
@ -175,12 +174,12 @@ export const meta = {
|
|||
},
|
||||
|
||||
res: {
|
||||
type: types.object,
|
||||
optional: bool.false, nullable: bool.false,
|
||||
type: 'object' as const,
|
||||
optional: false as const, nullable: false as const,
|
||||
properties: {
|
||||
createdNote: {
|
||||
type: types.object,
|
||||
optional: bool.false, nullable: bool.false,
|
||||
type: 'object' as const,
|
||||
optional: false as const, nullable: false as const,
|
||||
ref: 'Note',
|
||||
description: '作成した投稿'
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue