| 12345678910111213141516 |
- app.factory("ArtistsService", function($http){
- return {
- getAllArtists: function(){
- return $http.get('https://autismify.davidventura.com.ar/back/artists/')
- .then(function(response){
- return response.data;
- });
- },
- getAllArtistsWithAlbums: function(){
- return $http.get('https://autismify.davidventura.com.ar/back/artists/albums')
- .then(function(response){
- return response.data;
- });
- }
- };
- });
|