classify web
This commit is contained in:
14
utils/getFetcherStatus.js
Normal file
14
utils/getFetcherStatus.js
Normal file
@@ -0,0 +1,14 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user