We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe6bb25 commit 24ff4b8Copy full SHA for 24ff4b8
1 file changed
rootfs/api/models/app.py
@@ -66,15 +66,6 @@ class App(UuidAuditedModel):
66
class Meta:
67
permissions = (('use_app', 'Can use app'),)
68
69
- @property
70
- def select_app_name(self):
71
- """Select a unique randomly generated app name"""
72
- name = generate_app_name()
73
- while App.objects.filter(id=name).exists():
74
75
-
76
- return name
77
78
def save(self, *args, **kwargs):
79
if not self.id:
80
self.id = generate_app_name()
0 commit comments