Added TG bot

This commit is contained in:
Ultradesu
2025-08-15 05:15:13 +03:00
parent afd7ad2b28
commit 14590aaddc
3 changed files with 103 additions and 1 deletions

View File

@@ -216,6 +216,14 @@ class AccessRequest(models.Model):
)
# Related objects
selected_existing_user = models.ForeignKey(
User,
null=True,
blank=True,
on_delete=models.SET_NULL,
related_name='selected_for_requests',
help_text="Existing user selected to link with this Telegram account"
)
created_user = models.ForeignKey(
User,
null=True,