* chore: update onboarding workflow * dev: update user count tasks * fix: forgot password endpoint * dev: instance and onboarding updates * chore: update sign-in workflow for cloud and self-hosted instances (#2993) * chore: updated auth services * chore: new signin workflow updated * chore: updated content * chore: instance admin setup * dev: update instance verification task * dev: run the instance verification task every 4 hours * dev: update migrations * chore: update latest features image --------- Co-authored-by: pablohashescobar <nikhilschacko@gmail.com>
73 lines
2.4 KiB
Python
73 lines
2.4 KiB
Python
# Django imports
|
|
from django.db import models
|
|
from django.conf import settings
|
|
|
|
# Module imports
|
|
from plane.db.models import BaseModel
|
|
|
|
ROLE_CHOICES = (
|
|
(20, "Admin"),
|
|
)
|
|
|
|
|
|
class Instance(BaseModel):
|
|
# General informations
|
|
instance_name = models.CharField(max_length=255)
|
|
whitelist_emails = models.TextField(blank=True, null=True)
|
|
instance_id = models.CharField(max_length=25, unique=True)
|
|
license_key = models.CharField(max_length=256, null=True, blank=True)
|
|
api_key = models.CharField(max_length=16)
|
|
version = models.CharField(max_length=10)
|
|
# Instnace specifics
|
|
last_checked_at = models.DateTimeField()
|
|
namespace = models.CharField(max_length=50, blank=True, null=True)
|
|
# telemetry and support
|
|
is_telemetry_enabled = models.BooleanField(default=True)
|
|
is_support_required = models.BooleanField(default=True)
|
|
# is setup done
|
|
is_setup_done = models.BooleanField(default=False)
|
|
# signup screen
|
|
is_signup_screen_visited = models.BooleanField(default=False)
|
|
# users
|
|
user_count = models.PositiveBigIntegerField(default=0)
|
|
is_verified = models.BooleanField(default=False)
|
|
|
|
class Meta:
|
|
verbose_name = "Instance"
|
|
verbose_name_plural = "Instances"
|
|
db_table = "instances"
|
|
ordering = ("-created_at",)
|
|
|
|
|
|
class InstanceAdmin(BaseModel):
|
|
user = models.ForeignKey(
|
|
settings.AUTH_USER_MODEL,
|
|
on_delete=models.SET_NULL,
|
|
null=True,
|
|
related_name="instance_owner",
|
|
)
|
|
instance = models.ForeignKey(Instance, on_delete=models.CASCADE, related_name="admins")
|
|
role = models.PositiveIntegerField(choices=ROLE_CHOICES, default=20)
|
|
is_verified = models.BooleanField(default=False)
|
|
|
|
class Meta:
|
|
unique_together = ["instance", "user"]
|
|
verbose_name = "Instance Admin"
|
|
verbose_name_plural = "Instance Admins"
|
|
db_table = "instance_admins"
|
|
ordering = ("-created_at",)
|
|
|
|
|
|
class InstanceConfiguration(BaseModel):
|
|
# The instance configuration variables
|
|
key = models.CharField(max_length=100, unique=True)
|
|
value = models.TextField(null=True, blank=True, default=None)
|
|
category = models.TextField()
|
|
is_encrypted = models.BooleanField(default=False)
|
|
|
|
class Meta:
|
|
verbose_name = "Instance Configuration"
|
|
verbose_name_plural = "Instance Configurations"
|
|
db_table = "instance_configurations"
|
|
ordering = ("-created_at",)
|
|
|