kumify/msgio
Kumi 202c619315
feat(migrations): Initialize database schema for messaging
This commit introduces the initial set of database migrations required for setting up the foundational models of the messaging system within the application. These models include `GatewayUser`, `GatewayUserSetting`, `Notification`, and various scheduling entities to manage notification delivery timings. It lays the groundwork for linking users to their gateway preferences, storing customizable settings per gateway-user pair, and managing notifications with flexible scheduling options. This schema setup is crucial for supporting a dynamic and configurable messaging system, enabling efficient notification management and dispatching based on user preferences and predefined schedules.

By establishing a robust database schema upfront, we ensure that the application can scale effectively, facilitating ease of maintenance and future enhancements. This migration caters to the need for a cohesive and flexible data model to represent users, their notification preferences, and the logistics of notification dispatching and scheduling within the system.
2024-05-17 13:30:34 +02:00
..
gateways Remove dbsettings from init methods (would prevent initial migrations) 2021-03-01 07:09:53 +01:00
management/commands Add management command to set Telegram token 2020-12-31 22:29:26 +01:00
migrations feat(migrations): Initialize database schema for messaging 2024-05-17 13:30:34 +02:00
__init__.py Implement Telegram notifications 2020-12-29 17:26:48 +01:00
admin.py Implement Telegram notifications 2020-12-29 17:26:48 +01:00
apps.py Fix matrix message delivery? 2021-02-20 14:17:52 +00:00
handler.py Implement filter signals for message processing 2021-01-02 10:13:07 +01:00
helpers.py Send app specific data with Notification filter signal 2021-01-06 18:40:33 +01:00
models.py Fix notification sending for multiple dispatchers or no specified dispatchers 2021-01-15 15:14:08 +01:00
signals.py Implement Telegram notifications 2020-12-29 17:26:48 +01:00
tests.py Implement Telegram notifications 2020-12-29 17:26:48 +01:00
views.py Fix matrix message delivery? 2021-02-20 14:17:52 +00:00