Replace WYSIWYG editor with Markdown editor across all relevant models and admin fields. Add utilities for rendering and stripping markdown. Adjust serializers, views, and templates to support markdown content. Introduce `PastedImage` model and upload endpoint for handling inline image uploads in markdown. This change simplifies content formatting while enhancing flexibility with markdown support.
11 lines
193 B
Python
11 lines
193 B
Python
from engine.vibes_auth.emailing.models import (
|
|
CampaignRecipient,
|
|
EmailCampaign,
|
|
EmailTemplate,
|
|
)
|
|
|
|
__all__ = [
|
|
"EmailTemplate",
|
|
"EmailCampaign",
|
|
"CampaignRecipient",
|
|
]
|