Changing classes to internal instead of public in Core project. The abstract classes in the Web project can be used to create providers.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
namespace Umbraco.Core.Media
|
||||
{
|
||||
public interface IEmbedProvider
|
||||
internal interface IEmbedProvider
|
||||
{
|
||||
bool SupportsDimensions { get; }
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace Umbraco.Core.Media
|
||||
{
|
||||
public interface IEmbedSettingProvider
|
||||
internal interface IEmbedSettingProvider
|
||||
{
|
||||
object GetSetting(XmlNode settingNode);
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace Umbraco.Core.Media
|
||||
{
|
||||
public class ProviderSetting : Attribute
|
||||
internal class ProviderSetting : Attribute
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
namespace Umbraco.Web.Media.EmbedProviders
|
||||
{
|
||||
public class Twitgoo: AbstractProvider
|
||||
public class Twitgoo : AbstractProvider
|
||||
{
|
||||
public override bool SupportsDimensions
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user