Skip to content

Commit

Permalink
fix(controller): only add append permission to inbox resource
Browse files Browse the repository at this point in the history
  • Loading branch information
NuttyShrimp committed Dec 2, 2024
1 parent 92e5284 commit 7a53613
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion controller/src/classes/accessRequests/AccessRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export abstract class AccessRequest implements IAccessRequest {

// Set permissions for info resources
await publicController.addPermission(this.resources.getDataUrl(), Permission.Read, { type: "public" });
await publicController.addPermission(this.inbox.getDataUrl(), Permission.Write, { type: "public" });
await publicController.addPermission(this.inbox.getDataUrl(), Permission.Append, { type: "public" });
}

unsetPodUrl() {
Expand Down

0 comments on commit 7a53613

Please sign in to comment.