From 74a17a6b2d70b154a7d70c3fd243ce2e4e2fae21 Mon Sep 17 00:00:00 2001 From: Alexey Date: Wed, 6 May 2026 16:22:00 +0300 Subject: [PATCH 1/4] add template for behance --- lib/plugins/system/oembed/providers.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/plugins/system/oembed/providers.json b/lib/plugins/system/oembed/providers.json index 180b7ed74..e37c74759 100644 --- a/lib/plugins/system/oembed/providers.json +++ b/lib/plugins/system/oembed/providers.json @@ -365,7 +365,8 @@ { "name": "Behance", "templates": [ - "www\\.behance\\.net/gallery/.*" + "www\\.behance\\.net/gallery/.*", + "www\\.behance\\.net/[0-9a-zA-Z.\\-_]+/services/\\d+/" ], "endpoint": "https://www.behance.net/services/oembed" }, From 134c13362b7fde5fab66c3505309ac764b71c9ff Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 7 May 2026 14:28:20 +0300 Subject: [PATCH 2/4] quizizz endpoint is not working --- lib/plugins/system/oembed/providers.json | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/plugins/system/oembed/providers.json b/lib/plugins/system/oembed/providers.json index e37c74759..1dc325409 100644 --- a/lib/plugins/system/oembed/providers.json +++ b/lib/plugins/system/oembed/providers.json @@ -1089,14 +1089,6 @@ ], "endpoint": "https://adilo.bigcommand.com/web/oembed" }, - { - "name": "Quizizz", - "templates": [ - "quizizz.com/admin/quiz/([a-z0-9]+)/" - ], - "endpoint": "https://quizizz.com/oembed", - "url": "https://quizizz.com/embed/quiz/{1}" - }, { "name": "run.ply.io", "templates": [ From a83ac742f12d26bc66309061c34b20a3a82caa14 Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 7 May 2026 14:45:43 +0300 Subject: [PATCH 3/4] add wayground endpoint --- lib/plugins/system/oembed/providers.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lib/plugins/system/oembed/providers.json b/lib/plugins/system/oembed/providers.json index 1dc325409..298990923 100644 --- a/lib/plugins/system/oembed/providers.json +++ b/lib/plugins/system/oembed/providers.json @@ -1089,6 +1089,15 @@ ], "endpoint": "https://adilo.bigcommand.com/web/oembed" }, + { + "name": "Wayground", + "templates": [ + "(?:quizizz|wayground)\\.com/admin/quiz/([a-z0-9]+)/", + "wayground\\.com/embed/quiz/([a-z0-9]+)" + ], + "url": "https://wayground.com/embed/quiz/{1}", + "endpoint": "https://wayground.com/oembed" + }, { "name": "run.ply.io", "templates": [ From db0d9d05100874d1f0ef701f1a8e2fbec001f678 Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 7 May 2026 15:03:59 +0300 Subject: [PATCH 4/4] cover old quizizz URLs by new endpoint --- lib/plugins/system/oembed/providers.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/plugins/system/oembed/providers.json b/lib/plugins/system/oembed/providers.json index 298990923..0d9e0a231 100644 --- a/lib/plugins/system/oembed/providers.json +++ b/lib/plugins/system/oembed/providers.json @@ -1092,10 +1092,10 @@ { "name": "Wayground", "templates": [ - "(?:quizizz|wayground)\\.com/admin/quiz/([a-z0-9]+)/", - "wayground\\.com/embed/quiz/([a-z0-9]+)" + "(?:quizizz|wayground)\\.com/admin/(quiz)/([a-z0-9]+)/", + "(?:quizizz|wayground)\\.com/embed/(quiz|presentation)/([a-z0-9]+)" ], - "url": "https://wayground.com/embed/quiz/{1}", + "url": "https://wayground.com/embed/{1}/{2}", "endpoint": "https://wayground.com/oembed" }, {