From 9edd85781eb4bbc8ae9e6bee803449806198cdf9 Mon Sep 17 00:00:00 2001 From: Giuseppe Lo Presti Date: Fri, 19 Jan 2024 16:34:30 +0100 Subject: [PATCH] Adapted signature following the change in reva#4455 --- cback/storage/cback.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cback/storage/cback.go b/cback/storage/cback.go index 3382b43..9080b1d 100644 --- a/cback/storage/cback.go +++ b/cback/storage/cback.go @@ -526,7 +526,7 @@ func (f *fs) CreateStorageSpace(ctx context.Context, req *provider.CreateStorage return nil, errtypes.NotSupported("Operation Not Permitted") } -func (f *fs) ListRecycle(ctx context.Context, basePath, key, relativePath string) ([]*provider.RecycleItem, error) { +func (f *fs) ListRecycle(ctx context.Context, basePath, key, relativePath string, from, to *types.Timestamp) ([]*provider.RecycleItem, error) { return nil, errtypes.NotSupported("Operation Not Permitted") }