You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.
We need a plugin system. For example, Visplay needs to be able to access information from the system about projects.
Technical Implementation
NO REFLECTION IN THE MOZARELLA CODEBASE. Any reflection should be done in the plugin itself. For example, if a plugin wants to register itself with the root controller, it has to call setattr on the root controller.
Plugins can (but never should) modify the Mozarella models. If you need an N-1 relation between a built-in model and your model, create an XREF table. This is a bit messy from the plugin end, but it's good from a DBA admin perspective because it is trivial to revert.
The text was updated successfully, but these errors were encountered:
We need a plugin system. For example, Visplay needs to be able to access information from the system about projects.
Technical Implementation
setattr
on the root controller.The text was updated successfully, but these errors were encountered: