fix(plugins): set is_core=True for all built-in plugins
Check Cross-Plugin Imports / check (push) Has been cancelled

All built-in plugins should be auto-activated. The is_core flag was
only set on some plugins, leaving Mail, DMS, Calendar, Automation,
Unified Search etc. inactive by default.
This commit is contained in:
Agent Zero
2026-08-07 00:37:28 +02:00
parent 47aa42ed09
commit 1167644824
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ class SystemNotifPlugin(BasePlugin):
],
migrations=[],
permissions=["system_notif:read"],
is_core=False,
is_core=True,
settings_pages=[
FrontendSettingsPage(path='notifications', label_key='settings.notifications', label='Notifications', component='@/pages/SettingsNotifications', icon='Bell', order=40),
],