SeaCogs/aurora/utilities/config.py

26 lines
763 B
Python
Raw Normal View History

2023-12-17 02:36:18 -05:00
from redbot.core import Config
config: Config = Config.get_conf(None, identifier=481923957134912, cog_name="Moderation")
2023-12-18 19:00:16 -05:00
def register_config(config_obj: Config):
config_obj.register_guild(
use_discord_permissions = True,
ignore_other_bots = True,
dm_users = True,
log_channel = " ",
immune_roles = [],
history_ephemeral = False,
history_inline = False,
history_pagesize = 5,
history_inline_pagesize = 6,
auto_evidenceformat = False,
blacklist_roles = []
)
2023-12-18 19:00:16 -05:00
config_obj.register_user(
history_ephemeral = None,
history_inline = None,
history_pagesize = None,
history_inline_pagesize = None,
auto_evidenceformat = None
)