12 lines
576 B
Dart
Executable File
12 lines
576 B
Dart
Executable File
// api_config.dart
|
|
// const String apiUrl = 'http://127.0.0.1:8090';
|
|
// const String apiUrl = 'https://pbdev.venbait.in/';
|
|
const String apiUrl = 'https://pb.venbait.in/';
|
|
// const String apiUrl = 'https://pocket.fcsc.gov.ae/';
|
|
|
|
/// When `true`, UAE PASS deep links open the **staging** app (`uaepassstg://`).
|
|
/// When `false`, the scheme from the IdP is preserved (`uaepass://` for production).
|
|
/// Set to `true` if PocketBase OIDC / UAE PASS IdP is configured for staging
|
|
/// (e.g. `stg-id.uaepass.ae` / `stg-ids.uaepass.ae`).
|
|
const bool uaePassUseStagingEnvironment = true;
|