2023-12-17 02:36:18 -05:00
|
|
|
from redbot.core import Config
|
2023-12-17 02:16:44 -05:00
|
|
|
|
2023-12-28 05:52:49 -05:00
|
|
|
config: Config = Config.get_conf(None, identifier=481923957134912, cog_name="Aurora")
|
2023-12-18 15:58:06 -05:00
|
|
|
|
2023-12-18 19:00:16 -05:00
|
|
|
def register_config(config_obj: Config):
|
|
|
|
config_obj.register_guild(
|
2023-12-30 17:20:23 -05:00
|
|
|
show_moderator = True,
|
2023-12-18 15:58:06 -05:00
|
|
|
use_discord_permissions = True,
|
2024-01-03 14:18:22 -05:00
|
|
|
ignore_modlog = True,
|
2023-12-18 15:58:06 -05:00
|
|
|
ignore_other_bots = True,
|
|
|
|
dm_users = True,
|
|
|
|
log_channel = " ",
|
|
|
|
immune_roles = [],
|
|
|
|
history_ephemeral = False,
|
|
|
|
history_inline = False,
|
|
|
|
history_pagesize = 5,
|
|
|
|
history_inline_pagesize = 6,
|
2023-12-18 18:33:37 -05:00
|
|
|
auto_evidenceformat = False,
|
2023-12-18 15:58:06 -05:00
|
|
|
blacklist_roles = []
|
|
|
|
)
|
2023-12-18 19:00:16 -05:00
|
|
|
config_obj.register_user(
|
2023-12-18 15:58:06 -05:00
|
|
|
history_ephemeral = None,
|
|
|
|
history_inline = None,
|
|
|
|
history_pagesize = None,
|
2023-12-18 18:33:37 -05:00
|
|
|
history_inline_pagesize = None,
|
|
|
|
auto_evidenceformat = None
|
2023-12-18 15:58:06 -05:00
|
|
|
)
|