I am trying to build a realtime CRUD app. I have a rails app integrated with angularJS. It uses postgresql database, and angular is connected to the backend via JSON api. I'm running PubNub commands from angular.
So far, I got the PubNub subscribe and publish working, and the published data gets saved on the postgresql backend. In other words, I got the "create" and "read" part done, and I have the "update" and "delete" to implement.
I've been searching on google and pubnub, but the only examples I got were either for a project with PubNub+BackBone.js or I had to discard my backend with postgresql+JSON api and use PubNub's Storage&Playback feature.
Is there anyway that I can implement update/edit and delete on my current setup?