Files
gamemanager/lib/config.dart
T
2026-07-13 10:28:04 +02:00

12 lines
598 B
Dart

/// Valeurs par défaut de l'app (surchargeables dans l'écran Réglages).
class Config {
static const String defaultApiBase = 'https://gamemanager-api.nfteam.ovh';
// OIDC pocket-id (client public + PKCE)
static const String oidcIssuer = 'https://pocket.nfteam.ovh';
static const String oidcClientId = '83678fb3-9268-42c1-8dcb-0fb141692a6d';
// App Link HTTPS (fiable ; le schéma custom est bloqué par Chrome au retour)
static const String oidcRedirect = 'https://gamemanager-api.nfteam.ovh/oidc/callback';
static const List<String> oidcScopes = ['openid', 'profile', 'email'];
}