fix custom_repo

master
meisnate12 2 years ago
parent 5a508a7634
commit d7b91c29dc

@ -19,7 +19,6 @@ All the following attributes serve various functions as how the collection/playl
| Save Missing Items | `save_missing` | Collection/Playlist level `save_missing` toggle<br>**Default:** [settings library value](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Settings-Attributes) | **boolean:** `true` or `false` | :heavy_check_mark: |
| Ignore IDs | `ignore_ids` | Collection/Playlist level `ignore_ids` which is combined with the library and global `ignore_ids`<br>**Default:** [settings library value](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Settings-Attributes) | List or comma-separated String of TMDb/TVDb IDs | :heavy_check_mark: |
| Ignore IMDb IDs | `ignore_imdb_ids` | Collection/Playlist level `ignore_imdb_ids` which is combined with the library and global `ignore_imdb_ids`<br>**Default:** [settings library value](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Settings-Attributes) | List or comma-separated String of IMDb IDs | :heavy_check_mark: |
| Custom Repo | `custom_repo` | Defines the custom repo you use with the `repo` attribute when defining metadata_paths and playlist_files<br>**Default:** Nothing | Repo Location | :heavy_check_mark: |
| Name Mapping | `name_mapping` | Used to specify the folder name in the [Image Assets Directory](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Image-Asset-Directory) | Folder Name In Assets Directory | :heavy_check_mark: |
| Test Mode | `test` | When running in Test Mode (`--run-tests` [option](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Run-Commands-&-Environmental-Variables#run-tests)) only collections/playlists with `test: true` will be run<br>**Default:** `false` | **boolean:** `true` or `false` | :heavy_check_mark: |
| Changes Webhooks | `changes_webhooks` | Used to specify a collection/playlist changes webhook for just this collection/playlist. | List of webhooks | :heavy_check_mark: |

@ -69,6 +69,7 @@ settings:
| [Ignore IMDb IDs](#ignore-imdb-ids) | `ignore_imdb_ids` | List or comma-separated String of IMDb IDs | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| [Item Refresh Delay](#item-refresh-delay) | `item_refresh_delay` | Amount of time to wait between each `item_refresh` of every movie/show a collection/playlist **integer**<br>**default: 0** | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| [Playlist Sync to Users](#playlist-sync-to-users) | `playlist_sync_to_users` | `all` or List or comma-separated String of Users to sync the playlist to.<br>**default: `all`** | :heavy_check_mark: | :x: | :heavy_check_mark: |
| [Custom Repo](#custom-repo) | `custom_repo` | Defines the custom repo you use with the `repo` attribute when defining metadata_paths and playlist_files | :heavy_check_mark: | :x: | :x: |
| [Verify SSL](#verify-ssl) | `verify_ssl` | Turn SSL Verification on or off. | :heavy_check_mark: | :x: | :x: |
| [Missing Path](#missing-path) | `missing_path` | Path to missing YAML file for the library | :x: | :heavy_check_mark: | :x: |
@ -167,6 +168,12 @@ Amount of time to wait between each `item_refresh` of every movie/show a collect
## Playlist Sync to Users
`all` or List or comma-separated String of Users to sync the playlist to in addition to yourself. To Sync a playlist to only yourself leave `playlist_sync_to_users` blank. Defaults to `all`.
## Custom Repo
Defines the custom repo you use with the `repo` attribute when defining `metadata_paths` and `playlist_files`
* If you want to link you're own GitHub make sure you're using the raw link like below.
`https://raw.githubusercontent.com/zluckytraveler/Plex-Meta-Manager-Configs/master/zluckytraveler/`
## Verify SSL
Turn SSl Verification on or off.

Loading…
Cancel
Save