This commit is contained in:
Sebastian 2023-02-25 20:06:17 -03:00
parent 1723f16b9c
commit d11048b68c
No known key found for this signature in database
GPG Key ID: BE4FF68352439FC1
2 changed files with 4 additions and 1 deletions

View File

@ -28,6 +28,7 @@ import { useApiContext } from "@gnu-taler/web-util/lib/index.browser";
import { useCallback, useEffect, useState } from "preact/hooks";
import { useSWRConfig } from "swr";
import { useBackendContext } from "../context/backend.js";
import { bankUiSettings } from "../settings.js";
/**
* Has the information to reach and
@ -50,7 +51,7 @@ interface LoggedOut {
status: "loggedOut";
}
const maybeRootPath = "https://bank.demo.taler.net/demobanks/default/";
const maybeRootPath = bankUiSettings.backendBaseURL;
export function getInitialBackendBaseURL(): string {
const overrideUrl = localStorage.getItem("bank-base-url");

View File

@ -15,6 +15,7 @@
*/
export interface BankUiSettings {
backendBaseURL: string;
allowRegistrations: boolean;
showDemoNav: boolean;
bankName: string;
@ -25,6 +26,7 @@ export interface BankUiSettings {
* Global settings for the demobank UI.
*/
const defaultSettings: BankUiSettings = {
backendBaseURL: "https://bank.demo.taler.net/demobanks/default/",
allowRegistrations: true,
bankName: "Taler Bank",
showDemoNav: true,