mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 13:23:18 -07:00
Merge pull request #1361 from clinton-hall/clinton-hall-Import_Mode
Add NZBGet Web Ui Keys and fix migration
This commit is contained in:
commit
7a368c700c
4 changed files with 22 additions and 2 deletions
|
@ -383,7 +383,7 @@ class ConfigObj(configobj.ConfigObj, Section):
|
|||
section = "NzbDrone"
|
||||
envCatKey = 'NZBPO_NDCATEGORY'
|
||||
envKeys = ['ENABLED', 'HOST', 'APIKEY', 'PORT', 'SSL', 'WEB_ROOT', 'WATCH_DIR', 'FORK', 'DELETE_FAILED',
|
||||
'TORRENT_NOLINK', 'NZBEXTRACTIONBY', 'WAIT_FOR', 'DELETE_FAILED', 'REMOTE_PATH']
|
||||
'TORRENT_NOLINK', 'NZBEXTRACTIONBY', 'WAIT_FOR', 'DELETE_FAILED', 'REMOTE_PATH', 'IMPORTMODE']
|
||||
#new cfgKey added for importMode
|
||||
cfgKeys = ['enabled', 'host', 'apikey', 'port', 'ssl', 'web_root', 'watch_dir', 'fork', 'delete_failed',
|
||||
'Torrent_NoLink', 'nzbExtractionBy', 'wait_for', 'delete_failed', 'remote_path','importMode']
|
||||
|
@ -403,7 +403,7 @@ class ConfigObj(configobj.ConfigObj, Section):
|
|||
section = "Radarr"
|
||||
envCatKey = 'NZBPO_RACATEGORY'
|
||||
envKeys = ['ENABLED', 'HOST', 'APIKEY', 'PORT', 'SSL', 'WEB_ROOT', 'WATCH_DIR', 'FORK', 'DELETE_FAILED',
|
||||
'TORRENT_NOLINK', 'NZBEXTRACTIONBY', 'WAIT_FOR', 'DELETE_FAILED', 'REMOTE_PATH', 'OMDBAPIKEY']
|
||||
'TORRENT_NOLINK', 'NZBEXTRACTIONBY', 'WAIT_FOR', 'DELETE_FAILED', 'REMOTE_PATH', 'OMDBAPIKEY', 'IMPORTMODE']
|
||||
#new cfgKey added for importMode
|
||||
cfgKeys = ['enabled', 'host', 'apikey', 'port', 'ssl', 'web_root', 'watch_dir', 'fork', 'delete_failed',
|
||||
'Torrent_NoLink', 'nzbExtractionBy', 'wait_for', 'delete_failed', 'remote_path', 'omdbapikey','importMode']
|
||||
|
|
|
@ -126,6 +126,11 @@
|
|||
# api key for www.omdbapi.com (used as alternative to imdb to assist with movie identification).
|
||||
#raomdbapikey=
|
||||
|
||||
# Radarr import mode (Move, Copy).
|
||||
#
|
||||
# set to define import behaviour Move or Copy
|
||||
#raimportmode=Copy
|
||||
|
||||
# Radarr Delete Failed Downloads (0, 1).
|
||||
#
|
||||
# set to 1 to delete failed, or 0 to leave files in place.
|
||||
|
@ -230,6 +235,11 @@
|
|||
# Set the number of minutes to wait after calling the renamer, to check the episode has changed status.
|
||||
#ndwait_for=6
|
||||
|
||||
# NzbDrone import mode (Move, Copy).
|
||||
#
|
||||
# set to define import behaviour Move or Copy
|
||||
#ndimportmode=Copy
|
||||
|
||||
# NzbDrone Delete Failed Downloads (0, 1).
|
||||
#
|
||||
# set to 1 to delete failed, or 0 to leave files in place.
|
||||
|
|
|
@ -68,6 +68,11 @@
|
|||
# Set the number of minutes to wait after calling the renamer, to check the episode has changed status.
|
||||
#ndwait_for=6
|
||||
|
||||
# NzbDrone import mode (Move, Copy).
|
||||
#
|
||||
# set to define import behaviour Move or Copy
|
||||
#ndimportmode=Copy
|
||||
|
||||
# NzbDrone Delete Failed Downloads (0, 1).
|
||||
#
|
||||
# set to 1 to delete failed, or 0 to leave files in place.
|
||||
|
|
|
@ -73,6 +73,11 @@
|
|||
# Set the number of minutes to wait after calling the renamer, to check the episode has changed status.
|
||||
#rawait_for=6
|
||||
|
||||
# Radarr import mode (Move, Copy).
|
||||
#
|
||||
# set to define import behaviour Move or Copy
|
||||
#raimportmode=Copy
|
||||
|
||||
# Radarr Delete Failed Downloads (0, 1).
|
||||
#
|
||||
# set to 1 to delete failed, or 0 to leave files in place.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue