mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-01 19:35:23 +00:00
18 lines
330 B
Python
18 lines
330 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
from . import User, UserGroup
|
|
|
|
|
|
def initial_model():
|
|
for cls in [User, UserGroup]:
|
|
if getattr(cls, 'initial'):
|
|
cls.initial()
|
|
|
|
|
|
def generate_fake():
|
|
for cls in [User, UserGroup]:
|
|
if getattr(cls, 'generate_fake'):
|
|
cls.generate_fake()
|