mirror of https://github.com/jumpserver/jumpserver
chore: 添加注释
parent
39ce60c93a
commit
0c96bf61ef
|
@ -49,6 +49,9 @@ class OrgModelMixin(models.Model):
|
|||
|
||||
def save(self, *args, **kwargs):
|
||||
org = get_current_org()
|
||||
# 这里不可以优化成, 因为 root 组织下可以设置组织 id 来保存
|
||||
# if org.is_root() and not self.org_id:
|
||||
# raise ...
|
||||
if org.is_root():
|
||||
if not self.org_id:
|
||||
raise ValidationError('Please save in a organization')
|
||||
|
|
Loading…
Reference in New Issue