mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:20:33 +08:00
14 lines
286 B
Ruby
14 lines
286 B
Ruby
|
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
|