mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 08:49:13 +00:00
feat(actions): rtorrent add folder rename toggle (#756)
* feat(actions): rtorrent add folder rename toggle * refactor: use content layout
This commit is contained in:
parent
4449df66aa
commit
9fed6b3735
3 changed files with 38 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue