Feature: Allow monitoring access to tasks summary (#12624)

Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
This commit is contained in:
Trenton H
2026-04-22 13:48:54 -07:00
committed by GitHub
co-authored by shamoon
parent 2a20cc29a6
commit 0c25c2dac5
14 changed files with 133 additions and 21 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ def has_system_status_permission(user: User | None) -> bool:
return (
getattr(user, "is_superuser", False)
or getattr(user, "is_staff", False)
or user.has_perm("paperless.view_system_status")
or user.has_perm("paperless.view_system_monitoring")
)