Revert breaking changes

This commit is contained in:
Bjarke Berg
2022-08-18 12:41:06 +02:00
parent 26d83381f2
commit ac4fb6acf1
14 changed files with 14 additions and 14 deletions

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Dailymotion the popular online video-sharing platform.
/// </summary>
public class DailyMotion : OEmbedProviderBase
public class DailyMotion : EmbedProviderBase
{
public DailyMotion(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -2,7 +2,7 @@ using Umbraco.Cms.Core.Serialization;
namespace Umbraco.Cms.Core.Media.EmbedProviders;
[Obsolete("Use OEmbedProviderBase instead")]
[Obsolete("Use OEmbedProviderBase instead- This will be removed in Umbraco 12")]
public abstract class EmbedProviderBase : OEmbedProviderBase
{
protected EmbedProviderBase(IJsonSerializer jsonSerializer)

View File

@@ -7,7 +7,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Flickr the popular online image hosting and video hosting service.
/// </summary>
public class Flickr : OEmbedProviderBase
public class Flickr : EmbedProviderBase
{
public Flickr(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Getty Images supplier of stock images, editorial photography, video and music for business and consumers.
/// </summary>
public class GettyImages : OEmbedProviderBase
public class GettyImages : EmbedProviderBase
{
public GettyImages(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Giphy.com the popular online GIFs and animated sticker provider.
/// </summary>
public class Giphy : OEmbedProviderBase
public class Giphy : EmbedProviderBase
{
public Giphy(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Hulu the the popular online subscription streaming service.
/// </summary>
public class Hulu : OEmbedProviderBase
public class Hulu : EmbedProviderBase
{
public Hulu(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Issuu the popular platform to create interactive flipbooks, social media posts, GIFs, and more from a single piece of static content.
/// </summary>
public class Issuu : OEmbedProviderBase
public class Issuu : EmbedProviderBase
{
public Issuu(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Kickstarter the popular online crowdfunding platform focused on creativity.
/// </summary>
public class Kickstarter : OEmbedProviderBase
public class Kickstarter : EmbedProviderBase
{
public Kickstarter(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for SlideShare for professional online content including presentations, infographics, documents, and videos.
/// </summary>
public class Slideshare : OEmbedProviderBase
public class Slideshare : EmbedProviderBase
{
public Slideshare(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for SoundCloud the popular online audio distribution platform and music sharing provider.
/// </summary>
public class Soundcloud : OEmbedProviderBase
public class Soundcloud : EmbedProviderBase
{
public Soundcloud(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Ted that posts talks online for free distribution.
/// </summary>
public class Ted : OEmbedProviderBase
public class Ted : EmbedProviderBase
{
public Ted(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Twitter the popular online service for microblogging and social networking.
/// </summary>
public class Twitter : OEmbedProviderBase
public class Twitter : EmbedProviderBase
{
public Twitter(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -6,7 +6,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for Vimeo the popular online video hosting, sharing, and services platform provider.
/// </summary>
public class Vimeo : OEmbedProviderBase
public class Vimeo : EmbedProviderBase
{
public Vimeo(IJsonSerializer jsonSerializer)
: base(jsonSerializer)

View File

@@ -5,7 +5,7 @@ namespace Umbraco.Cms.Core.Media.EmbedProviders;
/// <summary>
/// Embed Provider for YouTube the popular online video sharing and social media platform provider.
/// </summary>
public class YouTube : OEmbedProviderBase
public class YouTube : EmbedProviderBase
{
public YouTube(IJsonSerializer jsonSerializer)
: base(jsonSerializer)