Skip to content
Snippets Groups Projects
finders.py 231 B
from wagtail.embeds.finders.oembed import OEmbedFinder


class CustomPeertubeFinder(OEmbedFinder):
    def _get_endpoint(self, url):
        return "https://tv.pirati.cz/services/oembed"


embed_finder_class = CustomPeertubeFinder