File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -494,6 +494,11 @@ def after_dataset_update(
494
494
u'''
495
495
Extensions will receive the validated data dict after the dataset
496
496
has been updated.
497
+
498
+ Note that bulk dataset update actions (`bulk_update_private`,
499
+ `bulk_update_public`) will bypass this callback. See
500
+ ``ckan.plugins.toolkit.chained_action`` to wrap those actions
501
+ if required.
497
502
'''
498
503
pass
499
504
@@ -502,6 +507,10 @@ def after_dataset_delete(
502
507
u'''
503
508
Extensions will receive the data dict (typically containing
504
509
just the dataset id) after the dataset has been deleted.
510
+
511
+ Note that the `bulk_update_delete` action will bypass this
512
+ callback. See ``ckan.plugins.toolkit.chained_action`` to wrap
513
+ that action if required.
505
514
'''
506
515
pass
507
516
@@ -631,6 +640,10 @@ def after_resource_update(
631
640
dictionary ``url_type`` which is set to ``upload`` when the
632
641
resource file is uploaded instead of linked.
633
642
:type resource: dictionary
643
+
644
+ Note that the datastore will bypass this callback when updating
645
+ the ``datastore_active`` flag on a resource that has been added
646
+ to the datastore.
634
647
'''
635
648
pass
636
649
You can’t perform that action at this time.
0 commit comments