thunderbird_accounts.client.management.commands.create_client

Create a new Client, with a Client Contact and optionally a Client Environment.

Classes

Command([stdout, stderr, no_color, force_color])

Usage:

class thunderbird_accounts.client.management.commands.create_client.Command(stdout=None, stderr=None, no_color=False, force_color=False)[source]

Bases: BaseCommand

Usage:

python manage.py create_client <client_name> <contact_name> <contact_email> <contact_url> [--env_type <str>]
    [--env_redirect_url <str>] [--env_allowed_hostnames <str>]
class ReturnCodes(*values)[source]

Bases: StrEnum

add_arguments(parser)[source]

Entry point for subclassed commands to add custom arguments.

handle(*args, **options)[source]

The actual logic of the command. Subclasses must implement this method.