Fix #4316: add text editor interfaces.

This commit is contained in:
Ben
2024-06-06 16:39:35 +08:00
parent a42ab32436
commit c125a7fe07
8 changed files with 506 additions and 197 deletions

View File

@ -0,0 +1,11 @@
using Oqtane.Interfaces;
namespace Oqtane.Providers
{
public class QuillTextEditorProvider : ITextEditorProvider
{
public string Name => "Quill";
public string EditorType => "Oqtane.Modules.Controls.QuillTextEditor, Oqtane.Client";
}
}