mirror of
https://github.com/Mailu/Mailu.git
synced 2025-05-27 22:57:38 +02:00
renamed config-dump option --verbose to --full
This commit is contained in:
parent
5c0efe82cf
commit
190e7a709b
@ -299,15 +299,15 @@ def config_update(verbose=False, delete_objects=False, dry_run=False, file=None)
|
|||||||
|
|
||||||
|
|
||||||
@mailu.command()
|
@mailu.command()
|
||||||
@click.option('-v', '--verbose', is_flag=True)
|
@click.option('-f', '--full', is_flag=True)
|
||||||
@click.option('-s', '--secrets', is_flag=True)
|
@click.option('-s', '--secrets', is_flag=True)
|
||||||
@flask_cli.with_appcontext
|
@flask_cli.with_appcontext
|
||||||
def config_dump(verbose=False, secrets=False):
|
def config_dump(full=False, secrets=False):
|
||||||
"""dump configuration as YAML-formatted data to stdout"""
|
"""dump configuration as YAML-formatted data to stdout"""
|
||||||
|
|
||||||
config = {}
|
config = {}
|
||||||
for section, model in yaml_sections:
|
for section, model in yaml_sections:
|
||||||
dump = [item.to_dict(verbose, secrets) for item in model.query.all()]
|
dump = [item.to_dict(full, secrets) for item in model.query.all()]
|
||||||
if len(dump):
|
if len(dump):
|
||||||
config[section] = dump
|
config[section] = dump
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user