mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +00:00
This will make it simpler to organize and unit-test all of our authentication backend code.
16 lines
459 B
Python
16 lines
459 B
Python
|
|
from argparse import ArgumentParser
|
|
from typing import Any
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
from zproject.backends import query_ldap
|
|
|
|
class Command(BaseCommand):
|
|
def add_arguments(self, parser: ArgumentParser) -> None:
|
|
parser.add_argument('email', metavar='<email>', type=str,
|
|
help="email of user to query")
|
|
|
|
def handle(self, *args: Any, **options: str) -> None:
|
|
query_ldap(**options)
|