Lukas Anzinger
Lukas Anzinger
See also #62
It would be nice to see this in the plugin, or at least have it documented in a README.
It seems to still work with 1.0.0 if we initializes flask-menu ourselves: ```python from flask_breadcrumbs import Breadcrumbs from flask_menu import Menu menu = Menu() breadcrumbs = Breadcrumbs(init_menu=False) menu.init_app(app) breadcrumbs.init_app(app) ```...
There is also https://github.com/CoultonF/inertia-flask, which seems to support inertia on blueprints only.
Right, that makes sense. Using the upstream `rev_id()` function (basically reverting bd8b43e00c1fd0d8854f8be63ac245e2ebc52694) seems to restore the old behavior: ```python from alembic import util as alembic_util alembic.init_app(app) alembic.rev_id = alembic_util.rev_id ```