-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hello @coatezy
This specific blocker can be overcome by the community plan. On the
The custom actions fit perfectly for this use case.
I've explored this, and while the parent record ID (group ID) might seem inaccessible at first glance, it is possible to pass it as an argument. Here’s how you can achieve this, in your def actions
action Avo::Actions::ActionName, arguments: -> do
if @record.class == Group # or @record.is_a?(Group)
{
parent_param: @record.to_param
}
else
{
}
end
end
end Now in Let me know if you find any obstacles while implementing this. |
Beta Was this translation helpful? Give feedback.
-
This worked perfectly, thanks @Paul-Bob! Hope this discussion and the ticket you created helps others too. |
Beta Was this translation helpful? Give feedback.
Hello @coatezy
This specific blocker can be overcome by the community plan. On the
advanced
one you could extract the action from the list by using the customizable controls feature.The custom actions fit perfectly for this use case.