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
|
|
|
|
2024-02-02 11:22:08 -05:00
|
|
|
|
2023-12-18 19:00:16 -05:00
|
|
|
def register_config(config_obj: Config):
|
|
|
|
config_obj.register_guild(
|
2024-02-02 11:22:08 -05:00
|
|
|
show_moderator=True,
|
|
|
|
use_discord_permissions=True,
|
2024-04-05 10:43:58 -04:00
|
|
|
respect_hierarchy=True,
|
2024-02-02 11:22:08 -05:00
|
|
|
ignore_modlog=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,
|
|
|
|
addrole_whitelist=[],
|
2023-12-18 15:58:06 -05:00
|
|
|
)
|
2023-12-18 19:00:16 -05:00
|
|
|
config_obj.register_user(
|
2024-02-02 11:22:08 -05:00
|
|
|
history_ephemeral=None,
|
|
|
|
history_inline=None,
|
|
|
|
history_pagesize=None,
|
|
|
|
history_inline_pagesize=None,
|
|
|
|
auto_evidenceformat=None,
|
2023-12-18 15:58:06 -05:00
|
|
|
)
|