1
0
Fork 0
mirror of synced 2024-06-28 11:00:35 +12:00

add method to get admins list

This commit is contained in:
Nick Sweeting 2019-04-24 11:37:30 -04:00
parent 327da95928
commit 3825ddc095

View file

@ -57,3 +57,9 @@ def apply_migrations(out_dir: str=OUTPUT_DIR) -> List[str]:
out.seek(0)
return [line.strip() for line in out.readlines() if line.strip()]
@enforce_types
def get_admins(out_dir: str=OUTPUT_DIR) -> List[str]:
setup_django(out_dir, check_db=False)
from django.contrib.auth.models import User
return User.objects.filter(is_superuser=True)