Hello,
I have the following form_for tag:
<%=form_for [:project, @permission], :remote => true do |f| %>
<form method="post" id="edit_permission_52" data-remote="true" class="edit_permission" action="/projects/52/permissions/useronspace" accept-charset="UTF-8">
The ID looks right = edit_permissions_52
But the action path is all messed up...
It should be /projects/#PROJECTID#/permissions/useronproject
but instead Rails is making it
/projects/#PERMISSIONID#/
which is breaking everything.
Does this make sense to you? thanks