from enum import Enum from PySide6.QtGui import QColor # --------------------------------------------------------------------------- # Constants # --------------------------------------------------------------------------- NO_STAFF = True NO_WHITELIST = False REDIRECT_URI = "http://localhost:5000/callback" SCOPES = ["identify"] CLIENT_ID = "1240007913175781508" AUTENTICATION_SUCCESS_MESSAGE = """

Authentication réussie

Vous pouvez maintenant fermer cette fenêtre et revenir au launcher de La Tanière.

""".encode('utf-8') # --------------------------------------------------------------------------- # ENUMS # --------------------------------------------------------------------------- class Resources(Enum): MP3 = ":/assets/the-beat-of-nature.mp3" FONT = ":/assets/Avocado-Cake-Demo.otf" class Urls(Enum): DISCORD = "https://discord.gg/A7eanmSkp2" INTRANET = "https://la-taniere.fun/connexion/" API_URL = 'https://prod.la-taniere.fun:30121/' class Glow(Enum): COLOR = QColor(255, 140, 0, 255) BLUR_BASE = 15 BLUR_PEAK = 70 ANIM_DURATION = 1200