feat(actions): rtorrent add folder rename toggle (#756)

* feat(actions): rtorrent add folder rename toggle

* refactor: use content layout
This commit is contained in:
metonym 2023-03-19 13:25:53 -07:00 committed by GitHub
parent 4449df66aa
commit 9fed6b3735
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 9 deletions

View file

@ -343,6 +343,11 @@ export const ActionContentLayoutOptions: SelectGenericOption<ActionContentLayout
{ label: "Don't create subfolder", description: "Don't create subfolder", value: "SUBFOLDER_NONE" }
];
export const ActionRtorrentRenameOptions: SelectGenericOption<ActionContentLayout>[] = [
{ label: "No", description: "No", value: "ORIGINAL" },
{ label: "Yes", description: "Yes", value: "SUBFOLDER_NONE" }
];
export interface OptionBasic {
label: string;
value: string;