mirror of
https://github.com/frappe/lms.git
synced 2026-04-28 19:49:26 +03:00
11 lines
309 B
JavaScript
11 lines
309 B
JavaScript
frappe.ready(() => {
|
|
hide_profile_for_guest_users();
|
|
});
|
|
|
|
const hide_profile_for_guest_users = () => {
|
|
if (frappe.session.user == "Guest") {
|
|
var link_array = $('.nav-link').filter((i, elem) => $(elem).text().trim() === "My Profile");
|
|
link_array.length && $(link_array[0]).addClass("hide");
|
|
}
|
|
};
|