feat: use orgnization logo as tour logo and allow to configure whether to enable tour in organization edit page (#3046)

This commit is contained in:
赵尧鹏
2024-07-10 14:18:04 +08:00
committed by GitHub
parent d8cb82f67a
commit 5686fe5d22
5 changed files with 21 additions and 0 deletions

View File

@ -208,6 +208,12 @@ export function setIsTourVisible(visible) {
window.dispatchEvent(new Event("storageTourChanged"));
}
export function setTourLogo(tourLogoSrc) {
if (tourLogoSrc !== "") {
TourObj["home"][0]["cover"] = (<img alt="casdoor.png" src={tourLogoSrc} />);
}
}
export function getTourVisible() {
return localStorage.getItem("isTourVisible") !== "false";
}