From a820c64ddba9dcb6db04ee64673fd243c0b12888 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 5 Jun 2026 17:03:39 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20load=5Fpath.py=20=E4=BD=BF=E7=94=A8=20ow?= =?UTF-8?q?ner.developer=20=E8=A7=92=E8=89=B2=E6=A0=BC=E5=BC=8F(=E8=80=8C?= =?UTF-8?q?=E9=9D=9E=20developer)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/load_path.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/load_path.py b/scripts/load_path.py index ec3776d..0251f8b 100644 --- a/scripts/load_path.py +++ b/scripts/load_path.py @@ -65,9 +65,9 @@ def register_role_paths(role, paths): def main(): print(f"Sage root: {SAGE_ROOT}") - print("Registering bugfix module RBAC permissions (developer only)...") + print("Registering bugfix module RBAC permissions (owner.developer only)...") total = 0 - total += register_role_paths("developer", PATHS_DEVELOPER) + total += register_role_paths("owner.developer", PATHS_DEVELOPER) print(f"\nDone. Total {total} permission entries registered.") print("NOTE: Restart Sage after permission changes to reload RBAC cache.")