mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
ba238f92c2
This reverts commit7ca57db97a
, reversing changes made tob7e027cfd1
.
15 lines
282 B
Ruby
15 lines
282 B
Ruby
require_dependency 'oneboxer/oembed_onebox'
|
|
|
|
module Oneboxer
|
|
class ClikthroughOnebox < OembedOnebox
|
|
|
|
matcher /clikthrough\.com\/theater\/video\/\d+$/
|
|
|
|
def oembed_endpoint
|
|
"http://clikthrough.com/services/oembed?url=#{BaseOnebox.uriencode(@url)}"
|
|
end
|
|
|
|
|
|
end
|
|
end
|