You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.4 KiB
40 lines
1.4 KiB
3 years ago
|
# Sonarr Builders
|
||
|
|
||
|
You can find items in your Plex using the features of [Sonarr](https://sonarr.tv/).
|
||
|
|
||
1 year ago
|
[Configuring Sonarr](../config/sonarr.md) in the config is required for any of these builders.
|
||
3 years ago
|
|
||
|
| 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:
|
||
3 years ago
|
Sonarr Tag1 and Tag2 Series:
|
||
|
sonarr_taglist: tag1, tag2
|
||
3 years ago
|
```
|
||
|
|
||
|
If no tag is specified then it gets every Movie without a tag.
|
||
|
|
||
|
```yaml
|
||
|
collections:
|
||
|
Sonarr Series Without Tags:
|
||
|
sonarr_taglist:
|
||
|
```
|