mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
Rename 'visible' => 'discoverable'
more clear that it's just the 'front door' we're talking about
This commit is contained in:
@@ -23,7 +23,7 @@ class Team(models.Model):
|
||||
name = models.CharField(max_length=255, blank=False, null=False, unique=True)
|
||||
slug = models.SlugField(max_length=50, blank=False, null=False)
|
||||
|
||||
visibility = models.IntegerField(choices=TeamVisibility.choices, default=TeamVisibility.VISIBLE)
|
||||
visibility = models.IntegerField(choices=TeamVisibility.choices, default=TeamVisibility.DISCOVERABLE)
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
Reference in New Issue
Block a user