mirror of https://github.com/zulip/zulip.git
12 lines
317 B
Python
12 lines
317 B
Python
|
from typing import Any
|
||
|
|
||
|
from zerver.lib.actions import promote_new_full_members
|
||
|
from zerver.lib.management import ZulipBaseCommand
|
||
|
|
||
|
|
||
|
class Command(ZulipBaseCommand):
|
||
|
help = """Add users to full members system group."""
|
||
|
|
||
|
def handle(self, *args: Any, **options: Any) -> None:
|
||
|
promote_new_full_members()
|