artistsService.js 264 B

12345678910
  1. app.factory("ArtistsService", function($http){
  2. return {
  3. getAllArtists: function(){
  4. return $http.get('https://autismify.davidventura.com.ar/back/artists/')
  5. .then(function(response){
  6. return response.data;
  7. });
  8. }
  9. };
  10. });