jellyfin-plugin-webhook/Jellyfin.Plugin.Webhook/Templates/Pushbullet.handlebars

21 lines
813 B
Handlebars

{
"type": "link",
"title": "{{{Name}}} added to {{{ServerName}}}",
"url": "{{ServerUrl}}/web/index.html#!/details?id={{ItemId}}&serverId={{ServerId}}",
{{#if_exist PushbulletDeviceId}}
"device_iden ": "{{PushbulletDeviceId}}",
{{/if_exist}}
{{#if_exist PushbulletChannel}}
"channel_tag": "{{PushbulletChannel}}",
{{/if_exist}}
{{#if_equals ItemType 'Season'}}
"body": "{{{SeriesName}}} {{{Name}}} has been added to {{{ServerName}}}"
{{else}}
{{#if_equals ItemType 'Episode'}}
"body": "{{{SeriesName}}} S{{SeasonNumber00}}E{{EpisodeNumber00}} {{{Name}}} has been added to {{{ServerName}}}"
{{else}}
"body": "{{{Name}}} ({{Year}}) has been added to {{{ServerName}}}"
{{/if_equals}}
{{/if_equals}}
}