diff options
Diffstat (limited to 'src/get_routes.rs')
-rw-r--r-- | src/get_routes.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/get_routes.rs b/src/get_routes.rs index d876b4f..ff86869 100644 --- a/src/get_routes.rs +++ b/src/get_routes.rs @@ -100,7 +100,6 @@ fn edit_blob<C: Controller>( if !controller.may_write_path(&ctx) { return Err(Error::Unauthorized( "you are not authorized to edit this file".into(), - ctx, )); } let blob = ctx.repo.find_blob(entr.id()).unwrap(); @@ -359,7 +358,6 @@ fn move_blob<C: Controller>( if !controller.may_move_path(&ctx) { return Err(Error::Unauthorized( "you are not authorized to move this file".into(), - ctx, )); } @@ -386,7 +384,6 @@ fn remove_blob<C: Controller>( if !controller.may_move_path(&ctx) { return Err(Error::Unauthorized( "you are not authorized to remove this file".into(), - ctx, )); } |