mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:53:41 +08:00
15 lines
297 B
Ruby
15 lines
297 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class NfbOnebox < OembedOnebox
|
|
|
|
matcher /^https?:\/\/(?:www\.)?nfb\.ca\/film\/[-\w]+\/?/
|
|
|
|
def oembed_endpoint
|
|
"http://www.nfb.ca/remote/services/oembed/?url=#{BaseOnebox.uriencode(@url)}&format=json"
|
|
end
|
|
|
|
|
|
end
|
|
end
|