コメント対応

This commit is contained in:
osamu 2023-11-12 14:35:09 +09:00
parent 219354f782
commit 7630cbe59f
2 changed files with 3 additions and 3 deletions

View File

@ -94,7 +94,7 @@ export const packedDriveFileSchema = {
},
folder: {
type: 'object',
optional: false, nullable: true,
optional: true, nullable: true,
ref: 'DriveFolder',
},
userId: {
@ -105,7 +105,7 @@ export const packedDriveFileSchema = {
},
user: {
type: 'object',
optional: false, nullable: true,
optional: true, nullable: true,
ref: 'UserLite',
},
},

View File

@ -37,7 +37,7 @@ export const packedDriveFolderSchema = {
},
parent: {
type: 'object',
optional: true, nullable: false,
optional: true, nullable: true,
ref: 'DriveFolder',
},
},