mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
ba238f92c2
This reverts commit7ca57db97a
, reversing changes made tob7e027cfd1
.
14 lines
275 B
Ruby
14 lines
275 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class NfbOnebox < OembedOnebox
|
|
|
|
matcher /nfb\.ca\/film\/[-\w]+\/?/
|
|
|
|
def oembed_endpoint
|
|
"http://www.nfb.ca/remote/services/oembed/?url=#{BaseOnebox.uriencode(@url)}&format=json"
|
|
end
|
|
|
|
|
|
end
|
|
end
|