Skip to content

Commit

Permalink
add TouchFile method to sharesstorageprovider
Browse files Browse the repository at this point in the history
  • Loading branch information
kobergj committed Dec 17, 2021
1 parent 5178924 commit 3271cfe
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,10 @@ func (s *service) RemoveGrant(ctx context.Context, req *provider.RemoveGrantRequ
return nil, gstatus.Errorf(codes.Unimplemented, "method not implemented")
}

func (s *service) TouchFile(ctx context.Context, req *provider.TouchFileRequest) (*provider.TouchFileResponse, error) {
return nil, gstatus.Errorf(codes.Unimplemented, "method not implemented")
}

// GetQuota returns 0 free quota. It is virtual ... the shares may have a different quota ...
func (s *service) GetQuota(ctx context.Context, req *provider.GetQuotaRequest) (*provider.GetQuotaResponse, error) {
// FIXME use req.Ref to get real quota
Expand Down

0 comments on commit 3271cfe

Please sign in to comment.