ruby-oembed/ruby-oembed

View on GitHub
lib/oembed/providers/matterport.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OEmbed
  class Providers
    # Provider for my.matterport.com
    Matterport = OEmbed::Provider.new(
      "https://my.matterport.com/api/v1/models/oembed/",
      format: :json
    )
    Matterport << "https://*.matterport.com/show/*"

    add_official_provider(Matterport)
  end
end