diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-03-24 04:16:58 +1100 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2023-03-24 04:16:58 +1100 |
commit | 0f928e479cbd81b17710da5dad14a092f23cdf0d (patch) | |
tree | d885d84ba47d601c4ba064e1cf47d1369198c617 /src/util/entities | |
parent | Merge branch 'master' of github.com:fosscord/fosscord-server (diff) | |
download | server-0f928e479cbd81b17710da5dad14a092f23cdf0d.tar.xz |
Work towards fixing openapi spec
Diffstat (limited to 'src/util/entities')
-rw-r--r-- | src/util/entities/User.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/entities/User.ts b/src/util/entities/User.ts index f99a85e7..8dfb0254 100644 --- a/src/util/entities/User.ts +++ b/src/util/entities/User.ts @@ -111,7 +111,7 @@ export class User extends BaseClass { banner?: string; // hash of the user banner @Column({ nullable: true, type: "simple-array" }) - theme_colors?: number[]; // TODO: Separate `User` and `UserProfile` models + theme_colors?: [number, number]; // TODO: Separate `User` and `UserProfile` models @Column({ nullable: true }) pronouns?: string; |