diff --git a/runtime/src/permissions.rs b/runtime/src/permissions.rs index 1896c63..dc85552 100644 --- a/runtime/src/permissions.rs +++ b/runtime/src/permissions.rs @@ -26,13 +26,23 @@ impl FetchPermissions for CloudstatePermissions { fn check_read<'a>( &mut self, + resolved: bool, p: &'a Path, api_name: &str, - ) -> Result, PermissionCheckError> { + ) -> Result, deno_fs::FsError> { debug!("checking read fetch permission"); Ok(p.to_path_buf().into()) } + // fn check_read<'a>( + // &mut self, + // p: &'a Path, + // api_name: &str, + // ) -> Result, PermissionCheckError> { + // debug!("checking read fetch permission"); + // Ok(p.to_path_buf().into()) + // } + // fn check_read<'a>( // &mut self, // p: &'a Path,