Skip to content

Instantly share code, notes, and snippets.

@meric
Created September 6, 2013 00:50
Show Gist options
  • Save meric/6458186 to your computer and use it in GitHub Desktop.
Save meric/6458186 to your computer and use it in GitHub Desktop.
// Code goes here
var testApp = angular.module('testApp', ['restangular'])
.config(function(RestangularProvider){
RestangularProvider.setBaseUrl("http://localhost/");
RestangularProvider.setRequestSuffix('/');
})
.controller('MainCtrl', function() {
})
testApp.run(function(Restangular) {
Restangular.allUrl("test", "/test/?page=1").getList();
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment