fix: enforce owner allowlist for commands

This commit is contained in:
Gustavo Madeira Santana
2026-02-04 20:05:08 -05:00
parent a6fd76efeb
commit 385a7eba33
2 changed files with 11 additions and 6 deletions

View File

@@ -165,7 +165,7 @@ describe("resolveCommandAuthorization", () => {
commandAuthorized: true,
});
expect(otherAuth.senderIsOwner).toBe(false);
expect(otherAuth.isAuthorizedSender).toBe(true);
expect(otherAuth.isAuthorizedSender).toBe(false);
});
});