Skip to content

Commit

Permalink
[#4684] [#4684] Add missing get_action calls
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Sep 4, 2019
1 parent 8e1cc60 commit b1129cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ckan/logic/action/get.py
Expand Up @@ -2669,7 +2669,7 @@ def user_activity_list_html(context, data_dict):
:rtype: string
'''
activity_stream = user_activity_list(context, data_dict)
activity_stream = logic.get_action('user_activity_list')(context, data_dict)
offset = int(data_dict.get('offset', 0))
extra_vars = {
'controller': 'user',
Expand Down Expand Up @@ -2755,7 +2755,7 @@ def organization_activity_list_html(context, data_dict):
:rtype: string
'''
activity_stream = organization_activity_list(context, data_dict)
activity_stream = logic.get_action('organization_activity_list')(context, data_dict)
offset = int(data_dict.get('offset', 0))
extra_vars = {
'controller': 'organization',
Expand Down

0 comments on commit b1129cf

Please sign in to comment.