Skip to content

Commit

Permalink
[fix][s]: Fix s3filestore for 2.9 IResourceController
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-mahajan committed Jan 13, 2024
1 parent 1b133b5 commit 59f049c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ckanext/s3filestore/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,18 @@ def before_resource_update(self, context, current, resource_dict):
'''Required by IResourceController'''
pass

def before_update(self, context, current, resource_dict):
'''Required by IResourceController'''
pass

def after_resource_update(self, context, resource_dict):
'''Required by IResourceController'''
pass

def after_update(self, context, resource_dict):
'''Required by IResourceController'''
pass

def before_delete(self, context, resource, resources):
# Delete the resource from the storage
for rs in resources:
Expand Down

0 comments on commit 59f049c

Please sign in to comment.