17 lines
516 B
JavaScript
17 lines
516 B
JavaScript
/** @odoo-module **/
|
|
import { UserMenu } from "@web/webclient/user_menu/user_menu";
|
|
import { patch } from "@web/core/utils/patch";
|
|
import { registry } from "@web/core/registry";
|
|
const userMenuRegistry = registry.category("user_menuitems");
|
|
|
|
|
|
patch(UserMenu.prototype, "legion_hide_odoo.UserMenu", {
|
|
setup() {
|
|
this._super.apply(this, arguments);
|
|
userMenuRegistry.remove("documentation");
|
|
userMenuRegistry.remove("support");
|
|
userMenuRegistry.remove("odoo_account");
|
|
},
|
|
|
|
});
|