-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
46 lines (46 loc) · 1.55 KB
/
Copy pathplugin.json
File metadata and controls
46 lines (46 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "phlix-plugin-omdb",
"version": "0.3.0",
"phlix_min_server_version": "1.2.0",
"type": "metadata-provider",
"entry": "Phlix\\Plugins\\Metadata\\Omdb\\OmdbPlugin",
"events": [],
"settings": {
"enabled": {
"type": "boolean",
"default": false,
"required": false,
"tier": "standard",
"label": "Enable OMDb",
"description": "Master on/off for OMDb rating enrichment. Optional; default off."
},
"api_key": {
"type": "string",
"default": null,
"required": true,
"secret": true,
"tier": "standard",
"label": "OMDb API Key",
"description": "Your OMDb API key. The free tier allows 1,000 requests/day.",
"link": "https://www.omdbapi.com/apikey.aspx",
"link_text": "Get a free OMDb API key"
},
"use_ssl_verification": {
"type": "boolean",
"default": true,
"required": false,
"tier": "advanced",
"label": "Verify SSL",
"description": "Verify OMDb's TLS certificate. Optional; default on. Leave on unless debugging."
},
"cache_ttl_seconds": {
"type": "integer",
"default": 86400,
"required": false,
"tier": "advanced",
"label": "Cache TTL (seconds)",
"description": "How long to cache OMDb responses. Optional; default 86400 (24 hours)."
}
},
"signature": null
}