pupilfirst/pupilfirst

View on GitHub
lib/oembed/youtube_provider.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Oembed
  class YoutubeProvider < BaseProvider
    def self.domains
      [
        /youtube\.com/,
        /youtu\.be/
      ]
    end

    def url
      "https://www.youtube.com/oembed?format=json&url="
    end
  end
end