Skip to content

Commit

Permalink
fix(backend): alsoKnownAsの誤った定義を修正 (misskey-dev#10725)
Browse files Browse the repository at this point in the history
  • Loading branch information
okayurisotto authored and sasagar committed May 9, 2023
1 parent e37f49b commit f825fe6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion packages/backend/src/models/json-schema/user.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,14 @@ export const packedUserDetailedNotMeOnlySchema = {
},
alsoKnownAs: {
type: 'array',
format: 'uri',
nullable: true,
optional: false,
items: {
type: 'string',
format: 'uri',
nullable: false,
optional: false,
},
},
createdAt: {
type: 'string',
Expand Down

0 comments on commit f825fe6

Please sign in to comment.