Skip to content

Commit fb07e1c

Browse files
authored
feat: add import/s3 to operations (#2256)
1 parent c10b3ff commit fb07e1c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

src/containers/Operations/constants.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export const BASE_COLUMNS = [
3434
export const OPERATION_KINDS: {value: OperationKind; content: string}[] = [
3535
{value: 'export/s3', content: i18n('kind_export_s3')},
3636
{value: 'export/yt', content: i18n('kind_export_yt')},
37+
{value: 'import/s3', content: i18n('kind_import_s3')},
3738
{value: 'ss/backgrounds', content: i18n('kind_ssBackgrounds')},
3839
{value: 'buildindex', content: i18n('kind_buildIndex')},
3940
];

src/containers/Operations/i18n/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"kind_ssBackgrounds": "SS/Backgrounds",
77
"kind_export_s3": "Export/S3",
88
"kind_export_yt": "Export/YT",
9+
"kind_import_s3": "Import/S3",
910
"kind_buildIndex": "Build Index",
1011

1112
"column_operationId": "Operation ID",

src/types/api/operations.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ export interface TOperationList {
116116
export type OperationKind =
117117
| 'ss/backgrounds'
118118
| 'import'
119+
| 'import/s3'
119120
| 'export/s3'
120121
| 'export/yt'
121122
| 'buildindex'

0 commit comments

Comments
 (0)