fix(admin-view): generate RPC interface for AdminView

This commit is contained in:
2026-03-20 14:17:41 +01:00
committed by Christian Appel
parent b14b046882
commit 137e572a94
+10
View File
@@ -89,6 +89,16 @@ except ImportError as e:
logger.error(f"Failed loading plugins: \n{reduce(add, traceback.format_exception(e))}")
class AdminView(RPCBase):
"""A view for administrators to change the current active experiment, manage messaging"""
@rpc_call
def activate(self) -> "None":
"""
Switch the parent application to this view.
"""
class AutoUpdates(RPCBase):
@property
@rpc_call