Skip to content

Commit

Permalink
Remove pack prefix of action name
Browse files Browse the repository at this point in the history
  • Loading branch information
dispensable committed Nov 29, 2023
1 parent 456860a commit ad6c5b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpdesk/models/action_tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def resolve_pack(self, *config):
report()

for a in actions:
obj = '.'.join([a.get('pack'), a.get('name')])
obj = a.get('name')
desc = a.get('description')
sub_actions.append([obj, desc, provider_type, a['id']])
return [name, sub_actions]
Expand Down

0 comments on commit ad6c5b6

Please sign in to comment.