app/mysfits-service/service/mythicalMysfitsService.py [163:183]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                   $.ajax({
                     url : mysfitsApi,
                     type : 'GET',
                     success : function(response) {
                       applyGridScope(response.mysfits)
                     },
                     error : function(response) {
                       console.log("could not retrieve mysfits list.");
                     }
                   });
               }
        
        
        
            });
        
            app.controller('mysfitsListController', function($scope) {
        
              gridScope = $scope;
        
              getAllMysfits(applyGridScope);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



web/index.html [125:145]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
           $.ajax({
             url : mysfitsApi,
             type : 'GET',
             success : function(response) {
               applyGridScope(response.mysfits)
             },
             error : function(response) {
               console.log("could not retrieve mysfits list.");
             }
           });
       }



    });

    app.controller('mysfitsListController', function($scope) {

      gridScope = $scope;

      getAllMysfits(applyGridScope);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



