chore(server): change transcode default to accept all supported audio codecs (#7283)

* change transcode defaults

* don't untick accepted audio codecs

* no need to change the transcode policy

* fix tests

* remove log
This commit is contained in:
Mert
2024-02-21 00:25:30 -05:00
committed by GitHub
parent 7c34d0595e
commit 397570ad1a
5 changed files with 50 additions and 43 deletions

View File

@@ -7,7 +7,7 @@ export class SystemConfigEntity<T = SystemConfigValue> {
key!: SystemConfigKey;
@Column({ type: 'varchar', nullable: true, transformer: { to: JSON.stringify, from: JSON.parse } })
value!: T;
value!: T | T[];
}
export type SystemConfigValue = string | number | boolean;