summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-18 01:18:05 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-04-18 01:18:05 +1000
commitcec495cc5f1083a43330a56b65d4eba67d376dbf (patch)
tree1619815f5ae7edbdc5891bfe775c70b936030318 /src
parentRewrite getRouteDescriptions, fix message route not appearing in openapi spec (diff)
downloadserver-cec495cc5f1083a43330a56b65d4eba67d376dbf.tar.xz
Enforce theme_colors to be ints
Diffstat (limited to 'src')
-rw-r--r--src/util/schemas/MemberChangeProfileSchema.ts5
-rw-r--r--src/util/schemas/UserProfileModifySchema.ts5
2 files changed, 4 insertions, 6 deletions
diff --git a/src/util/schemas/MemberChangeProfileSchema.ts b/src/util/schemas/MemberChangeProfileSchema.ts

index 06505ab9..d2d1481d 100644 --- a/src/util/schemas/MemberChangeProfileSchema.ts +++ b/src/util/schemas/MemberChangeProfileSchema.ts
@@ -22,8 +22,7 @@ export interface MemberChangeProfileSchema { bio?: string; pronouns?: string; /** - * @minItems 2 - * @maxItems 2 + * @items.type integer */ - theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi + theme_colors?: [number, number]; } diff --git a/src/util/schemas/UserProfileModifySchema.ts b/src/util/schemas/UserProfileModifySchema.ts
index 6f6777dd..3dea257a 100644 --- a/src/util/schemas/UserProfileModifySchema.ts +++ b/src/util/schemas/UserProfileModifySchema.ts
@@ -22,8 +22,7 @@ export interface UserProfileModifySchema { banner?: string | null; pronouns?: string; /** - * @minItems 2 - * @maxItems 2 + * @items.type integer */ - theme_colors?: number[]; // puyo: changed from [number, number] because it breaks openapi + theme_colors?: [number, number]; }