feat(aurora): renamed moderation cog to aurora, converted to sqlite3
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 1m12s
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 1m12s
This commit is contained in:
parent
9abbe12270
commit
ca50deedd5
14 changed files with 63 additions and 183 deletions
25
aurora/utilities/config.py
Normal file
25
aurora/utilities/config.py
Normal file
|
@ -0,0 +1,25 @@
|
|||
from redbot.core import Config
|
||||
|
||||
config: Config = Config.get_conf(None, identifier=481923957134912, cog_name="Moderation")
|
||||
|
||||
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 = []
|
||||
)
|
||||
config_obj.register_user(
|
||||
history_ephemeral = None,
|
||||
history_inline = None,
|
||||
history_pagesize = None,
|
||||
history_inline_pagesize = None,
|
||||
auto_evidenceformat = None
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue