stupidcomputer
2fceb6679f
this is insecure, terrible, horrible code. do not use. things implemented: - add trusted users - add trusted channels and follower channels - qr codes and stuff
10 lines
291 B
Python
10 lines
291 B
Python
from django.db import models
|
|
|
|
class Organization(models.Model):
|
|
name = models.CharField(
|
|
max_length=256,
|
|
)
|
|
owner = models.CharField(max_length=256)
|
|
trusted_users = models.TextField() # either json or empty
|
|
channel_info = models.TextField() # either json or empty
|