[57] #784 add radarr_taglist, sonarr_taglist, radarr_all, and sonarr_all
parent
82f6cad5f7
commit
f1918c02f4
@ -0,0 +1,40 @@
|
||||
# Radarr Builders
|
||||
|
||||
You can find items in your Plex using the features of [Radarr](https://radarr.video/).
|
||||
|
||||
[Configuring Radarr](../../config/radarr) in the config is required for any of these builders.
|
||||
|
||||
| Attribute | Description | Works with Movies | Works with Shows | Works with Playlists and Custom Sort |
|
||||
|:------------------------------------|:---------------------------------------------|:-----------------:|:----------------:|:------------------------------------:|
|
||||
| [`radarr_all`](#radarr-all) | Gets all Movies in Radarr. | ✅ | ❌ | ❌ |
|
||||
| [`radarr_taglist`](#radarr-taglist) | Gets Movies from Radarr based on their tags. | ✅ | ❌ | ❌ |
|
||||
|
||||
## Radarr All
|
||||
|
||||
Gets all Movies in Radarr.
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
ALL Radarr Movies:
|
||||
radarr_all: true
|
||||
```
|
||||
|
||||
## Radarr Taglist
|
||||
|
||||
Gets Movies from Radarr based on their tags.
|
||||
|
||||
Set the attribute to the tag you want to search for. Multiple values are supported as either a list or a comma-separated string.
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
Radarr Movies Without Tags:
|
||||
radarr_taglist: action, drama
|
||||
```
|
||||
|
||||
If no tag is specified then it gets every Movie without a tag.
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
Radarr Movies Without Tags:
|
||||
radarr_taglist:
|
||||
```
|
@ -0,0 +1,40 @@
|
||||
# Sonarr Builders
|
||||
|
||||
You can find items in your Plex using the features of [Sonarr](https://sonarr.tv/).
|
||||
|
||||
[Configuring Sonarr](../../config/sonarr) in the config is required for any of these builders.
|
||||
|
||||
| Attribute | Description | Works with Movies | Works with Shows | Works with Playlists and Custom Sort |
|
||||
|:------------------------------------|:---------------------------------------------|:-----------------:|:----------------:|:------------------------------------:|
|
||||
| [`sonarr_all`](#sonarr-all) | Gets all Series in Sonarr. | ❌ | ✅ | ❌ |
|
||||
| [`sonarr_taglist`](#sonarr-taglist) | Gets Series from Sonarr based on their tags. | ❌ | ✅ | ❌ |
|
||||
|
||||
## Sonarr All
|
||||
|
||||
Gets all Series in Sonarr.
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
ALL Sonarr Series:
|
||||
sonarr_all: true
|
||||
```
|
||||
|
||||
## Sonarr Taglist
|
||||
|
||||
Gets Series from Sonarr based on their tags.
|
||||
|
||||
Set the attribute to the tag you want to search for. Multiple values are supported as either a list or a comma-separated string.
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
Sonarr Series Without Tags:
|
||||
sonarr_taglist: action, drama
|
||||
```
|
||||
|
||||
If no tag is specified then it gets every Movie without a tag.
|
||||
|
||||
```yaml
|
||||
collections:
|
||||
Sonarr Series Without Tags:
|
||||
sonarr_taglist:
|
||||
```
|
Loading…
Reference in new issue