My Rails app has a player class that works perfectly. Players can be created, deleted, and updated from my rails control panel without any issues.
I would like a remote
If you are trying this:
via Postman - Under form-data tab, you need to have the vars as :
player[name] player[room_id] . .
via jQuery:
$.ajax({ url: 'url', type: 'post', data: { player: { name: 'Test', room_id: '0' } } })