14 lines
420 B
JavaScript
14 lines
420 B
JavaScript
let hasFetchedSystemSettings = false;
|
|
let hasFetchedCategories = false;
|
|
export function getHasFetchedSystemSettings() {
|
|
return hasFetchedSystemSettings;
|
|
}
|
|
export function setHasFetchedSystemSettings(value) {
|
|
hasFetchedSystemSettings = value;
|
|
}
|
|
export function getHasFetchedCategories() {
|
|
return hasFetchedCategories;
|
|
}
|
|
export function setHasFetchedCategories(value) {
|
|
hasFetchedCategories = value;
|
|
} |