Add import task

This commit is contained in:
2024-08-10 07:33:29 +00:00
committed by GitHub
parent 92646cfaa9
commit 79e1ca9bbe
17 changed files with 797 additions and 145 deletions

View File

@@ -27,6 +27,8 @@ class ServerStatus {
this.meilisearch,
required this.noUser,
required this.isDocker,
required this.ffprobeBinaryEnabled,
required this.libzipEnabled,
});
@JsonKey(name: 'ffmpeg_api_enabled')
@@ -40,6 +42,10 @@ class ServerStatus {
final bool noUser;
@JsonKey(name: 'is_docker')
final bool isDocker;
@JsonKey(name: 'ffprobe_binary_enabled')
final bool ffprobeBinaryEnabled;
@JsonKey(name: 'libzip_enabled')
final bool libzipEnabled;
factory ServerStatus.fromJson(Map<String, dynamic> json) =>
_$ServerStatusFromJson(json);