Add vimeo_simple

Fixes #4749
This commit is contained in:
Alexandros
2018-05-30 01:48:36 +03:00
committed by Bjørn Erik Pedersen
parent 20cbc2c785
commit 8de5324479
6 changed files with 129 additions and 9 deletions

View File

@@ -82,6 +82,11 @@ type Twitter struct {
// Vimeo holds the privacy configuration settingsrelated to the Vimeo shortcode.
type Vimeo struct {
Service `mapstructure:",squash"`
// If simple mode is enabled, only a thumbnail is fetched from i.vimeocdn.com and
// shown with a play button overlaid. If a user clicks the button, he/she will
// be taken to the video page on vimeo.com in a new browser tab.
Simple bool
}
// YouTube holds the privacy configuration settingsrelated to the YouTube shortcode.

View File

@@ -46,6 +46,7 @@ disable = true
enableDNT = true
[privacy.vimeo]
disable = true
simple = true
[privacy.youtube]
disable = true
privacyEnhanced = true
@@ -69,7 +70,7 @@ simple = true
assert.True(pc.Twitter.Disable)
assert.True(pc.Twitter.EnableDNT)
assert.True(pc.Vimeo.Disable)
assert.True(pc.Vimeo.Simple)
assert.True(pc.YouTube.PrivacyEnhanced)
assert.True(pc.YouTube.Disable)
}