Description
An entitity that organizes firebase accounts into groups for easier management. Group can be one of the following types:
ADMIN = 'admin'
FREE_CUSTOMERS = 'free_customers'
PAID_CUSTOMERS = 'paid_customers'
PRIVATE = 'private'
class FirebaseGroup(models.Model):
slug = models.CharField(max_length=50, unique=True, null=False, blank=False)
parent = models.CharField(max_length=25, choices=PushServiceGroups.choices, null=False, blank=False, db_index=True)