Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ private static async Task<IResult> Handle(
{
return Results.NotFound("The specified folder does not exist.");
}

// No authorization check is necessary on the scope of the folder! This is because above, we ensure that
// the user has at least 'GenericWrite' permission on the organization. If he does, this permission is
// always passed onto the folder anyway.
}
else if (request.FolderName is not null)
{
Expand Down
Loading