I saw this post about adding parameters to a member action route:
Rails3 Routes - Passing parameter to a member route
And the routing works great when I enter the full URL manually: www.whatever.com/resource/:resource_id/action/:action_parameter
Is there a convenient path helper I can use to link to this in my views? For example, if it is just an ordinary member action WITHOUT a parameter, I can use
action_resource_path(:resource_id)
Is there an equivalent with the extra parameter?