Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/containers/Operations/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export const BASE_COLUMNS = [
export const OPERATION_KINDS: {value: OperationKind; content: string}[] = [
{value: 'export/s3', content: i18n('kind_export_s3')},
{value: 'export/yt', content: i18n('kind_export_yt')},
{value: 'import/s3', content: i18n('kind_import_s3')},
{value: 'ss/backgrounds', content: i18n('kind_ssBackgrounds')},
{value: 'buildindex', content: i18n('kind_buildIndex')},
];
1 change: 1 addition & 0 deletions src/containers/Operations/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"kind_ssBackgrounds": "SS/Backgrounds",
"kind_export_s3": "Export/S3",
"kind_export_yt": "Export/YT",
"kind_import_s3": "Import/S3",
"kind_buildIndex": "Build Index",

"column_operationId": "Operation ID",
Expand Down
1 change: 1 addition & 0 deletions src/types/api/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export interface TOperationList {
export type OperationKind =
| 'ss/backgrounds'
| 'import'
| 'import/s3'
| 'export/s3'
| 'export/yt'
| 'buildindex'
Expand Down
Loading