discourse/lib/oneboxer/smugmug_onebox.rb

14 lines
286 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require_dependency 'oneboxer/oembed_onebox'
module Oneboxer
class SmugmugOnebox < OembedOnebox
matcher /^https?\:\/\/.*\.smugmug\.com\/.*$/
def oembed_endpoint
"http://api.smugmug.com/services/oembed/?url=#{BaseOnebox.uriencode(@url)}&format=json"
end
end
end