I'm trying to use flask-menu to build a menu which contains a dynamic submenu. Therefore I'm registering menu entries with MenuEntryMixin.register().
What I'm missing is a way to 'unregister' a given MenuEntryMixin, which removes the entry from the menu.
I'm trying to use flask-menu to build a menu which contains a dynamic submenu. Therefore I'm registering menu entries with
MenuEntryMixin.register()
. What I'm missing is a way to 'unregister' a givenMenuEntryMixin
, which removes the entry from the menu.