mirror of https://github.com/jumpserver/jumpserver
25 lines
683 B
Python
25 lines
683 B
Python
# Generated by Django 4.1.13 on 2024-05-21 11:04
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def init_user_msg_subscription(apps, schema_editor):
|
|
User = apps.get_model('users', 'User')
|
|
UserMsgSubscription = apps.get_model('notifications', 'UserMsgSubscription')
|
|
|
|
receive_backends = ['site_msg', 'email']
|
|
user = User.objects.get(username='admin')
|
|
UserMsgSubscription.objects.update_or_create(
|
|
defaults={'receive_backends': receive_backends}, user=user
|
|
)
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
('notifications', '0002_auto_20210909_1946'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(init_user_msg_subscription),
|
|
]
|