Add additional comments to tests

This commit is contained in:
Andrew Kingston 2024-09-27 10:35:23 +01:00
parent 80f1de27de
commit 80cdcf99da
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ describe("/permission", () => {
})
it("should be able to access the view data when the table is set to public and with no view permissions overrides", async () => {
// Make view inherit table permissions
// Make view inherit table permissions. Needed for backwards compatibility with existing views.
await config.api.permission.revoke({
roleId: STD_ROLE_ID,
resourceId: view.id,
@ -144,7 +144,7 @@ describe("/permission", () => {
resourceId: table._id,
level: PermissionLevel.READ,
})
// Make view inherit table permissions
// Make view inherit table permissions. Needed for backwards compatibility with existing views.
await config.api.permission.revoke({
roleId: STD_ROLE_ID,
resourceId: view.id,