-
Notifications
You must be signed in to change notification settings - Fork 0
/
webhook.handlebars
32 lines (26 loc) · 956 Bytes
/
webhook.handlebars
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
{
{{#if_equals ItemType 'Movie'}}
"title": "Film Added • {{Name}}",
{{/if_equals}}
{{#if_equals ItemType 'Episode'}}
"title": "Episode Added • {{SeriesName}} S{{SeasonNumber00}}E{{EpisodeNumber00}} - {{Name}}",
{{/if_equals}}
{{#if_equals ItemType 'Season'}}
"title": "Season Added • {{SeriesName}} {{Name}}",
{{/if_equals}}
{{#if_equals ItemType 'Series'}}
"title": "Show Added • {{Name}}",
{{/if_equals}}
{{#if_equals ItemType 'Album'}}
"title": "Album Added • {{Artist}} - {{Name}}",
{{/if_equals}}
{{#if_equals ItemType 'Audio'}}
"title": "Song Added • {{Artist}} - {{Name}}",
{{/if_equals}}
"url": "{{ServerUrl}}/web/#!/details?id={{ItemId}}&serverId={{ServerId}}",
"image": "{{ServerUrl}}/Items/{{ItemId}}/Images/Primary",
"description": "{{Overview}}",
"type": "{{ItemType}}",
"server_name": "{{ServerName}}",
"timestamp": "{{Timestamp}}"
}