From 1abbbe649c36f99eb4967c22267b8fdf7527a567 Mon Sep 17 00:00:00 2001 From: cyberguru1 Date: Thu, 28 May 2026 17:29:12 -0500 Subject: [PATCH] perms: add permissions for AccountPayments Register the /litrpc.Accounts/AccountPayments RPC endpoint in the RequiredPermissions map, requiring read access on the account entity. --- perms/permissions.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/perms/permissions.go b/perms/permissions.go index e2f2f8e0..a93289ea 100644 --- a/perms/permissions.go +++ b/perms/permissions.go @@ -44,6 +44,10 @@ var ( Entity: "account", Action: "read", }}, + "/litrpc.Accounts/AccountPayments": {{ + Entity: "account", + Action: "read", + }}, "/litrpc.Accounts/RemoveAccount": {{ Entity: "account", Action: "write",