31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
|
import uuid
|
||
|
from datetime import timedelta
|
||
|
|
||
|
from django.conf import settings
|
||
|
from django.contrib.auth.models import AbstractUser
|
||
|
from django.db import models
|
||
|
|
||
|
# from core.lib.customers import get_or_create, update_customer_fields
|
||
|
from core.util import logs
|
||
|
|
||
|
log = logs.get_logger(__name__)
|
||
|
|
||
|
|
||
|
class User(AbstractUser):
|
||
|
id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
|
||
|
payment_provider_id = models.CharField(max_length=255, null=True, blank=True)
|
||
|
billing_provider_id = models.CharField(max_length=255, null=True, blank=True)
|
||
|
email = models.EmailField(unique=True)
|
||
|
|
||
|
def get_notification_settings(self):
|
||
|
return NotificationSettings.objects.get_or_create(user=self)[0]
|
||
|
|
||
|
|
||
|
class NotificationSettings(models.Model):
|
||
|
user = models.OneToOneField(User, on_delete=models.CASCADE)
|
||
|
ntfy_topic = models.CharField(max_length=255, null=True, blank=True)
|
||
|
ntfy_url = models.CharField(max_length=255, null=True, blank=True)
|
||
|
|
||
|
def __str__(self):
|
||
|
return f"Notification settings for {self.user}"
|