Skip to content

Commit

Permalink
[#4031] Add missing routes in group plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Feb 23, 2018
1 parent 17c4c42 commit 3569e09
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ckan/lib/plugins.py
Expand Up @@ -190,6 +190,14 @@ def register_group_plugins(map):
controller=group_controller,
action='members',
ckan_icon='users')
map.connect('%s_member_new' % group_type,
'/%s/member_new/{id}' % group_type,
controller=group_controller,
action='member_new')
map.connect('%s_member_delete' % group_type,
'/%s/member_delete/{id}' % group_type,
controller=group_controller,
action='member_delete')
map.connect('%s_activity' % group_type,
'/%s/activity/{id}/{offset}' % group_type,
controller=group_controller,
Expand Down

0 comments on commit 3569e09

Please sign in to comment.