New: Bulk manage custom formats

Closes #5050
This commit is contained in:
Bogdan 2024-08-19 02:55:13 +03:00
commit 30ceb77615
28 changed files with 702 additions and 33 deletions

View file

@ -1,12 +1,14 @@
import ModelBase from 'App/ModelBase';
export interface QualityProfileFormatItem {
format: number;
name: string;
score: number;
}
interface CustomFormat {
id: number;
interface CustomFormat extends ModelBase {
name: string;
includeCustomFormatWhenRenaming: boolean;
}
export default CustomFormat;