Addig fronend flag (SPONSORS_ENABLED) to enable Sponsors in the gui.

refs #122
This commit is contained in:
softsimon
2020-10-07 23:30:45 +07:00
parent b6738dd9e8
commit 5b8dbfca74
4 changed files with 46 additions and 37 deletions

View File

@@ -39,6 +39,7 @@ interface Env {
LIQUID_ENABLED: boolean;
BISQ_ENABLED: boolean;
BISQ_SEPARATE_BACKEND: boolean;
SPONSORS_ENABLED: boolean;
ELCTRS_ITEMS_PER_PAGE: number;
KEEP_BLOCKS_AMOUNT: number;
}
@@ -48,6 +49,7 @@ const defaultEnv: Env = {
'LIQUID_ENABLED': false,
'BISQ_ENABLED': false,
'BISQ_SEPARATE_BACKEND': false,
'SPONSORS_ENABLED': false,
'ELCTRS_ITEMS_PER_PAGE': 25,
'KEEP_BLOCKS_AMOUNT': 8
};