diff options
author | Erkin Alp Güney <erkinalp9035@gmail.com> | 2022-05-15 17:53:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-15 17:53:24 +0300 |
commit | 1573edb505fd70238239218fac04029f496c33e5 (patch) | |
tree | 7a499d6c00b74a49dbaca8dab7bc8716110c257f /util/src | |
parent | Extended settings (diff) | |
download | server-1573edb505fd70238239218fac04029f496c33e5.tar.xz |
Extended settings will not be type checked
Diffstat (limited to 'util/src')
-rw-r--r-- | util/src/entities/User.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/entities/User.ts b/util/src/entities/User.ts index 558a4190..9b1c494e 100644 --- a/util/src/entities/User.ts +++ b/util/src/entities/User.ts @@ -166,7 +166,7 @@ export class User extends BaseClass { // workaround to prevent fossord-unaware clients from deleting settings not used by them @Column({ type: "simple-json", select: false }) - extended_settings: UserSettings; + extended_settings: string; @Column({ type: "simple-json" }) notes: { [key: string]: string }; //key is ID of user |