Skip to content

Commit

Permalink
Use allow_unauthenticated in FilesRedirectHandler for now
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Feb 11, 2024
1 parent 4cbb504 commit faee488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/base/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ async def redirect_to_files(self: Any, path: str) -> None:
self.log.debug("Redirecting %s to %s", self.request.path, url)
self.redirect(url)

@web.authenticated
@allow_unauthenticated
async def get(self, path: str = "") -> None:
return await self.redirect_to_files(self, path)

Expand Down

0 comments on commit faee488

Please sign in to comment.