1
0
mirror of https://gitlab.com/ddorn/tfjm-discord-bot.git synced 2025-07-08 23:30:21 +02:00

capitains can now create private channels

This commit is contained in:
ddorn
2020-04-28 00:23:43 +02:00
parent 63fc235132
commit 4a5c5cfea3
2 changed files with 30 additions and 1 deletions

View File

@ -9,6 +9,7 @@ __all__ = [
"ROUND_NAMES",
"TIRAGES_FILE",
"TEAMS_FILE",
"TEAMS_CHANNEL_CATEGORY",
]
TOKEN = os.environ.get("TFJM_DISCORD_TOKEN")
@ -34,6 +35,8 @@ class Role:
PARTICIPANT = "Participant"
TEAMS_CHANNEL_CATEGORY = "Channels d'équipes"
ROUND_NAMES = ["premier tour", "deuxième tour"]
TOP_LEVEL_DIR = Path(__file__).parent.parent