Skip to content

Commit

Permalink
コメント対応
Browse files Browse the repository at this point in the history
  • Loading branch information
samunohito committed Nov 12, 2023
1 parent 219354f commit 7630cbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/models/json-schema/drive-file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const packedDriveFileSchema = {
},
folder: {
type: 'object',
optional: false, nullable: true,
optional: true, nullable: true,
ref: 'DriveFolder',
},
userId: {
Expand All @@ -105,7 +105,7 @@ export const packedDriveFileSchema = {
},
user: {
type: 'object',
optional: false, nullable: true,
optional: true, nullable: true,
ref: 'UserLite',
},
},
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/src/models/json-schema/drive-folder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const packedDriveFolderSchema = {
},
parent: {
type: 'object',
optional: true, nullable: false,
optional: true, nullable: true,
ref: 'DriveFolder',
},
},
Expand Down

0 comments on commit 7630cbe

Please sign in to comment.