Skip to content

Instantly share code, notes, and snippets.

@MittalPatel-BTC
Created May 6, 2019 17:49
Show Gist options
  • Save MittalPatel-BTC/43f817c6f7d3328008bfd77374643640 to your computer and use it in GitHub Desktop.
Save MittalPatel-BTC/43f817c6f7d3328008bfd77374643640 to your computer and use it in GitHub Desktop.
Paloma controller with multiple action in single file.
var ClientsController = Paloma.controller('Clients');
ClientsController.prototype.index = function(){
alert('This is the JS code for clients index action');
// logic goes here
};
ClientsController.prototype.show = function(){
alert('This is the JS code for clients show action');
// logic goes here
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment