mirror of
https://github.com/MCV-Software/TWBlue.git
synced 2026-07-07 07:51:19 +02:00
15a9df2ca9
Implemented a new 'Announcements' buffer to view instance-wide news. Features include: - New buffer and UI panel for announcements. - Support for templates and rendering of announcement content. - 'Dismiss' functionality (mapped to Enter/Return) to mark announcements as read. - Integrated into account settings for buffer management.
9 lines
355 B
Python
9 lines
355 B
Python
# -*- coding: utf-8 -*-
|
|
from .base import BaseBuffer
|
|
from .mentions import MentionsBuffer
|
|
from .conversations import ConversationBuffer, ConversationListBuffer
|
|
from .users import UserBuffer
|
|
from .notifications import NotificationsBuffer
|
|
from .search import SearchBuffer
|
|
from .community import CommunityBuffer
|
|
from .announcements import AnnouncementsBuffer |