本文整理汇总了Python中app.helpers.data.DataManager.create_user_notification方法的典型用法代码示例。如果您正苦于以下问题:Python DataManager.create_user_notification方法的具体用法?Python DataManager.create_user_notification怎么用?Python DataManager.create_user_notification使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类app.helpers.data.DataManager
的用法示例。
在下文中一共展示了DataManager.create_user_notification方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_notifications
# 需要导入模块: from app.helpers.data import DataManager [as 别名]
# 或者: from app.helpers.data.DataManager import create_user_notification [as 别名]
def test_notifications(self):
with app.test_request_context():
user = get_or_create_super_admin()
notif = {
'title': 'Test Notif Title',
'message': 'Test Notif Message',
'action': 'Testing Notifications'
}
DataManager.create_user_notification(user=user, **notif)
rv = self.app.get(url_for('profile.notifications_view'))
self.assertIn(notif['title'], rv.data, msg=rv.data)
self.assertIn(notif['message'], rv.data, msg=rv.data)
示例2: test_notification_read
# 需要导入模块: from app.helpers.data import DataManager [as 别名]
# 或者: from app.helpers.data.DataManager import create_user_notification [as 别名]
def test_notification_read(self):
with app.test_request_context():
user = get_or_create_super_admin()
notif = {
'title': 'Test Notif Title',
'message': 'Test Notif Message',
'action': 'Testing Notifications'
}
DataManager.create_user_notification(user=user, **notif)
notification = Notification.query.filter_by(user=user, **notif).first()
rv = self.app.get(url_for('profile.mark_notification_as_read',
notification_id=notification.id))
self.assertEqual(notification.has_read, True, msg=rv.data)
示例3: send_notification
# 需要导入模块: from app.helpers.data import DataManager [as 别名]
# 或者: from app.helpers.data.DataManager import create_user_notification [as 别名]
def send_notification(user, action, title, message):
# DataManager imported here to prevent circular dependency
from app.helpers.data import DataManager
DataManager.create_user_notification(user, action, title, message)